diff --git a/.vscode/cspell.json b/.vscode/cspell.json index 89739895b8e9..db89547a739b 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -457,7 +457,9 @@ "verfasst", "engelska", "fhir", - "FHIR" + "FHIR", + "naam", + "aenter" ] }, { diff --git a/scripts/devops_tasks/test_run_samples.py b/scripts/devops_tasks/test_run_samples.py index 1f1d36e1c90e..1e1347447f81 100644 --- a/scripts/devops_tasks/test_run_samples.py +++ b/scripts/devops_tasks/test_run_samples.py @@ -140,6 +140,8 @@ "azure-ai-textanalytics": [ "sample_analyze_healthcare_entities_with_cancellation.py", "sample_analyze_healthcare_entities_with_cancellation_async.py", + "sample_abstract_summary.py", + "sample_abstract_summary_async.py", ] } diff --git a/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md b/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md index 84df28230adb..356ffd389e16 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md +++ b/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md @@ -1,8 +1,30 @@ # Release History -## 5.2.2 (Unreleased) +## 5.3.0b1 (Unreleased) ### Features Added +- Added the Extractive Summarization feature and related models: `ExtractSummaryAction`, `ExtractSummaryResult`, and `SummarySentence`. + Access the feature through the `begin_analyze_actions` API. +- Added keyword arguments `fhir_version` and `document_type` to `begin_analyze_healthcare_entities` and `AnalyzeHealthcareEntitiesAction`. +- Added property `fhir_bundle` to `AnalyzeHealthcareEntitiesResult`. +- Added property `confidence_score` to `HealthcareRelation`. +- Added enum `HealthcareDocumentType`. +- Added property `resolutions` to `CategorizedEntity`. +- Added models and enums related to resolutions: `BaseResolution`, `ResolutionKind`, `AgeResolution`, `AreaResolution`, + `BooleanResolution`, `CurrencyResolution`, `DateTimeResolution`, `InformationResolution`, `LengthResolution`, + `NumberResolution`, `NumericRangeResolution`, `OrdinalResolution`, `SpeedResolution`, `TemperatureResolution`, + `TemporalSpanResolution`, `VolumeResolution`, `WeightResolution`, `AgeUnit`, `AreaUnit`, `TemporalModifier`, + `InformationUnit`, `LengthUnit`, `NumberKind`, `RangeKind`, `RelativeTo`, `SpeedUnit`, `TemperatureUnit`, + `VolumeUnit`, and `WeightUnit`. +- Added the Abstractive Summarization feature and related models: `AbstractSummaryAction`, `AbstractSummaryResult`, `AbstractiveSummary`, + `SummaryContext`, `PhraseControl`, and `PhraseControlStrategy`. Access the feature through the `begin_analyze_actions` API. +- Added automatic language detection to long-running operation APIs. Pass `auto` into the document `language` hint to use this feature. +- Added `autodetect_default_language` to long-running operation APIs. Pass as the default/fallback language for automatic language detection. +- Added property `detected_language` to `RecognizeEntitiesResult`, `RecognizePiiEntitiesResult`, `AnalyzeHealthcareEntitiesResult`, + `ExtractKeyPhrasesResult`, `RecognizeLinkedEntitiesResult`, `AnalyzeSentimentResult`, `RecognizeCustomEntitiesResult`, + `ClassifyDocumentResult`, `ExtractSummaryResult`, and `AbstractSummaryResult` to indicate the language detected by automatic language detection. +- Added property `script` to `DetectedLanguage` to indicate the script of the input document. +- Added the `dynamic_classification` client method to perform dynamic classification on documents without needing to train a model. ### Breaking Changes diff --git a/sdk/textanalytics/azure-ai-textanalytics/README.md b/sdk/textanalytics/azure-ai-textanalytics/README.md index bbe6c041b85a..a5a8985aa273 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/README.md +++ b/sdk/textanalytics/azure-ai-textanalytics/README.md @@ -12,6 +12,9 @@ The Azure Cognitive Service for Language is a cloud-based service that provides - Text Analytics for Health - Custom Named Entity Recognition - Custom Text Classification +- Extractive Text Summarization +- Abstractive Text Summarization +- Dynamic Classification [Source code][source_code] | [Package (PyPI)][ta_pypi] | [API reference documentation][ta_ref_docs] | [Product documentation][language_product_documentation] | [Samples][ta_samples] @@ -254,6 +257,9 @@ The following section provides several code snippets covering some of the most c - [Custom Entity Recognition][recognize_custom_entities_sample] - [Custom Single Label Classification][single_label_classify_sample] - [Custom Multi Label Classification][multi_label_classify_sample] +- [Extractive Summarization][extract_summary_sample] +- [Abstractive Summarization][abstract_summary_sample] +- [Dynamic Classification][dynamic_classification_sample] ### Analyze sentiment @@ -530,10 +536,12 @@ Note: Healthcare Entities Analysis is only available with API version v3.1 and n - Linked Entity Recognition - Key Phrase Extraction - Sentiment Analysis -- Custom Entity Recognition -- Custom Single Label Classification -- Custom Multi Label Classification -- Healthcare Entities Analysis +- Custom Entity Recognition (API version 2022-05-01 and newer) +- Custom Single Label Classification (API version 2022-05-01 and newer) +- Custom Multi Label Classification (API version 2022-05-01 and newer) +- Healthcare Entities Analysis (API version 2022-05-01 and newer) +- Extractive Summarization (API version 2022-10-01-preview and newer) +- Abstractive Summarization (API version 2022-10-01-preview and newer) ```python from azure.core.credentials import AzureKeyCredential @@ -664,6 +672,9 @@ Common scenarios - Custom Entity Recognition: [sample_recognize_custom_entities.py][recognize_custom_entities_sample] ([async_version][recognize_custom_entities_sample_async]) - Custom Single Label Classification: [sample_single_label_classify.py][single_label_classify_sample] ([async_version][single_label_classify_sample_async]) - Custom Multi Label Classification: [sample_multi_label_classify.py][multi_label_classify_sample] ([async_version][multi_label_classify_sample_async]) +- Extractive text summarization: [sample_extract_summary.py][extract_summary_sample] ([async version][extract_summary_sample_async]) +- Abstractive text summarization: [sample_abstract_summary.py][abstract_summary_sample] ([async version][abstract_summary_sample_async]) +- Dynamic Classification: [sample_dynamic_classification.py][dynamic_classification_sample] ([async_version][dynamic_classification_sample_async]) Advanced scenarios @@ -766,6 +777,12 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [multi_label_classify_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_multi_label_classify.py [multi_label_classify_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_multi_label_classify_async.py [healthcare_action_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py +[extract_summary_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_extract_summary.py +[extract_summary_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_extract_summary_async.py +[abstract_summary_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_abstract_summary.py +[abstract_summary_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_abstract_summary_async.py +[dynamic_classification_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_dynamic_classification.py +[dynamic_classification_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_dynamic_classification_async.py [cla]: https://cla.microsoft.com [code_of_conduct]: https://opensource.microsoft.com/codeofconduct/ [coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/__init__.py index d0254abbcdca..7031ebf4787c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/__init__.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/__init__.py @@ -57,8 +57,50 @@ ClassificationCategory, AnalyzeHealthcareEntitiesAction, TextAnalysisKind, + ExtractSummaryAction, + ExtractSummaryResult, + SummarySentence, + AbstractSummaryResult, + AbstractiveSummary, + SummaryContext, + PhraseControl, + AbstractSummaryAction, + DynamicClassificationResult, +) +from ._generated.models import ( + HealthcareDocumentType, + BaseResolution, + ResolutionKind, + AgeResolution, + AreaResolution, + BooleanResolution, + CurrencyResolution, + DateTimeResolution, + InformationResolution, + LengthResolution, + NumberResolution, + NumericRangeResolution, + OrdinalResolution, + SpeedResolution, + TemperatureResolution, + TemporalSpanResolution, + VolumeResolution, + WeightResolution, + AgeUnit, + AreaUnit, + TemporalModifier, + InformationUnit, + LengthUnit, + NumberKind, + RangeKind, + RelativeTo, + SpeedUnit, + TemperatureUnit, + VolumeUnit, + WeightUnit, + PhraseControlStrategy, + ClassificationType, ) - from ._lro import AnalyzeHealthcareEntitiesLROPoller, AnalyzeActionsLROPoller, TextAnalysisLROPoller __all__ = [ @@ -117,6 +159,47 @@ "AnalyzeHealthcareEntitiesAction", "TextAnalysisLROPoller", "TextAnalysisKind", + "ExtractSummaryAction", + "ExtractSummaryResult", + "SummarySentence", + "HealthcareDocumentType", + "BaseResolution", + "ResolutionKind", + "AgeResolution", + "AreaResolution", + "BooleanResolution", + "CurrencyResolution", + "DateTimeResolution", + "InformationResolution", + "LengthResolution", + "NumberResolution", + "NumericRangeResolution", + "OrdinalResolution", + "SpeedResolution", + "TemperatureResolution", + "TemporalSpanResolution", + "VolumeResolution", + "WeightResolution", + "AgeUnit", + "AreaUnit", + "TemporalModifier", + "InformationUnit", + "LengthUnit", + "NumberKind", + "RangeKind", + "RelativeTo", + "SpeedUnit", + "TemperatureUnit", + "VolumeUnit", + "WeightUnit", + "AbstractSummaryResult", + "AbstractiveSummary", + "SummaryContext", + "PhraseControlStrategy", + "PhraseControl", + "AbstractSummaryAction", + "ClassificationType", + "DynamicClassificationResult", ] __version__ = VERSION diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_base_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_base_client.py index c8a36ff0f08d..03bb64c5bf6a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_base_client.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_base_client.py @@ -18,6 +18,8 @@ class TextAnalyticsApiVersion(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Cognitive Service for Language or Text Analytics API versions supported by this package""" #: This is the default version and corresponds to the Cognitive Service for Language API. + V2022_10_01_PREVIEW = "2022-10-01-preview" + #: This version corresponds to the Cognitive Service for Language API. V2022_05_01 = "2022-05-01" #: This version corresponds to Text Analytics API. V3_1 = "v3.1" diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_dict_mixin.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_dict_mixin.py new file mode 100644 index 000000000000..c8ea22039ae7 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_dict_mixin.py @@ -0,0 +1,54 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +class DictMixin: + def __setitem__(self, key, item): + self.__dict__[key] = item + + def __getitem__(self, key): + return self.__dict__[key] + + def __repr__(self): + return str(self) + + def __len__(self): + return len(self.keys()) + + def __delitem__(self, key): + self.__dict__[key] = None + + def __eq__(self, other): + if isinstance(other, self.__class__): + return self.__dict__ == other.__dict__ + return False + + def __ne__(self, other): + return not self.__eq__(other) + + def __contains__(self, key): + return key in self.__dict__ + + def __str__(self): + return str({k: v for k, v in self.__dict__.items() if not k.startswith("_")}) + + def has_key(self, k): + return k in self.__dict__ + + def update(self, *args, **kwargs): + return self.__dict__.update(*args, **kwargs) + + def keys(self): + return [k for k in self.__dict__ if not k.startswith("_")] + + def values(self): + return [v for k, v in self.__dict__.items() if not k.startswith("_")] + + def items(self): + return [(k, v) for k, v in self.__dict__.items() if not k.startswith("_")] + + def get(self, key, default=None): + if key in self.__dict__: + return self.__dict__[key] + return default diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_operations_mixin.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_operations_mixin.py index 35bf29e9326c..3c64b339d7a2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_operations_mixin.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_operations_mixin.py @@ -98,6 +98,8 @@ def analyze_text( api_version = self._get_api_version('analyze_text') if api_version == '2022-05-01': from .v2022_05_01.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from .v2022_10_01_preview.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'analyze_text'".format(api_version)) mixin_instance = OperationClass() @@ -142,6 +144,8 @@ def analyze_text_job_status( api_version = self._get_api_version('analyze_text_job_status') if api_version == '2022-05-01': from .v2022_05_01.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from .v2022_10_01_preview.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'analyze_text_job_status'".format(api_version)) mixin_instance = OperationClass() @@ -222,6 +226,8 @@ def begin_analyze_text_cancel_job( api_version = self._get_api_version('begin_analyze_text_cancel_job') if api_version == '2022-05-01': from .v2022_05_01.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from .v2022_10_01_preview.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'begin_analyze_text_cancel_job'".format(api_version)) mixin_instance = OperationClass() @@ -266,6 +272,8 @@ def begin_analyze_text_submit_job( api_version = self._get_api_version('begin_analyze_text_submit_job') if api_version == '2022-05-01': from .v2022_05_01.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from .v2022_10_01_preview.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'begin_analyze_text_submit_job'".format(api_version)) mixin_instance = OperationClass() diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_text_analytics_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_text_analytics_client.py index 14d33e2bcf28..2895e5bfa8c8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_text_analytics_client.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/_text_analytics_client.py @@ -75,7 +75,7 @@ def __init__( profile=KnownProfiles.default, # type: KnownProfiles **kwargs # type: Any ): - if api_version == '2022-05-01': + if api_version == '2022-05-01' or api_version == '2022-10-01-preview': base_url = '{Endpoint}/language' elif api_version == 'v3.0': base_url = '{Endpoint}/text/analytics/v3.0' @@ -99,12 +99,16 @@ def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2022-05-01: :mod:`v2022_05_01.models` + * 2022-10-01-preview: :mod:`v2022_10_01_preview.models` * v3.0: :mod:`v3_0.models` * v3.1: :mod:`v3_1.models` """ if api_version == '2022-05-01': from .v2022_05_01 import models return models + elif api_version == '2022-10-01-preview': + from .v2022_10_01_preview import models + return models elif api_version == 'v3.0': from .v3_0 import models return models diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_operations_mixin.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_operations_mixin.py index 9ff37e076b63..e2ac6e8e6cb8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_operations_mixin.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_operations_mixin.py @@ -91,6 +91,8 @@ async def analyze_text( api_version = self._get_api_version('analyze_text') if api_version == '2022-05-01': from ..v2022_05_01.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from ..v2022_10_01_preview.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'analyze_text'".format(api_version)) mixin_instance = OperationClass() @@ -134,6 +136,8 @@ async def analyze_text_job_status( api_version = self._get_api_version('analyze_text_job_status') if api_version == '2022-05-01': from ..v2022_05_01.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from ..v2022_10_01_preview.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'analyze_text_job_status'".format(api_version)) mixin_instance = OperationClass() @@ -213,6 +217,8 @@ async def begin_analyze_text_cancel_job( api_version = self._get_api_version('begin_analyze_text_cancel_job') if api_version == '2022-05-01': from ..v2022_05_01.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from ..v2022_10_01_preview.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'begin_analyze_text_cancel_job'".format(api_version)) mixin_instance = OperationClass() @@ -256,6 +262,8 @@ async def begin_analyze_text_submit_job( api_version = self._get_api_version('begin_analyze_text_submit_job') if api_version == '2022-05-01': from ..v2022_05_01.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass + elif api_version == '2022-10-01-preview': + from ..v2022_10_01_preview.aio.operations import TextAnalyticsClientOperationsMixin as OperationClass else: raise ValueError("API version {} does not have operation 'begin_analyze_text_submit_job'".format(api_version)) mixin_instance = OperationClass() diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_text_analytics_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_text_analytics_client.py index b94a1e568f6d..17a26377731c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_text_analytics_client.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/aio/_text_analytics_client.py @@ -73,7 +73,7 @@ def __init__( profile: KnownProfiles = KnownProfiles.default, **kwargs # type: Any ) -> None: - if api_version == '2022-05-01': + if api_version == '2022-05-01' or api_version == '2022-10-01-preview': base_url = '{Endpoint}/language' elif api_version == 'v3.0': base_url = '{Endpoint}/text/analytics/v3.0' @@ -97,12 +97,16 @@ def models(cls, api_version=DEFAULT_API_VERSION): """Module depends on the API version: * 2022-05-01: :mod:`v2022_05_01.models` + * 2022-10-01-preview: :mod:`v2022_10_01_preview.models` * v3.0: :mod:`v3_0.models` * v3.1: :mod:`v3_1.models` """ if api_version == '2022-05-01': from ..v2022_05_01 import models return models + elif api_version == '2022-10-01-preview': + from ..v2022_10_01_preview import models + return models elif api_version == 'v3.0': from ..v3_0 import models return models diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/models.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/models.py index bcb4f157ef0d..96fe20c1aed5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/models.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/models.py @@ -4,5 +4,5 @@ # Licensed under the MIT License. See License.txt in the project root for # license information. # -------------------------------------------------------------------------- -from .v2022_05_01.models import * +from .v2022_10_01_preview.models import * from .v3_1.models import * diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/__init__.py new file mode 100644 index 000000000000..5a61b782b9af --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/__init__.py @@ -0,0 +1,20 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._text_analytics_client import TextAnalyticsClient + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk +__all__ = ['TextAnalyticsClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) + +_patch_sdk() diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_configuration.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_configuration.py new file mode 100644 index 000000000000..f9e225131075 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_configuration.py @@ -0,0 +1,72 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + +VERSION = "unknown" + +class TextAnalyticsClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for TextAnalyticsClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param endpoint: Supported Cognitive Services endpoint (e.g., + https://:code:``.api.cognitiveservices.azure.com). Required. + :type endpoint: str + :keyword api_version: Api Version. Default value is "2022-10-01-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "TokenCredential", + endpoint: str, + **kwargs: Any + ) -> None: + super(TextAnalyticsClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-10-01-preview") # type: str + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if endpoint is None: + raise ValueError("Parameter 'endpoint' must not be None.") + + self.credential = credential + self.endpoint = endpoint + self.api_version = api_version + self.credential_scopes = kwargs.pop('credential_scopes', ['https://cognitiveservices.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'ai-textanalytics/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_metadata.json b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_metadata.json new file mode 100644 index 000000000000..c18547d70e6b --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_metadata.json @@ -0,0 +1,173 @@ +{ + "chosen_version": "2022-10-01-preview", + "total_api_version_list": ["2022-10-01-preview"], + "client": { + "name": "TextAnalyticsClient", + "filename": "_text_analytics_client", + "description": "The language service API is a suite of natural language processing (NLP) skills built with best-in-class Microsoft machine learning algorithms. The API can be used to analyze unstructured text for tasks such as sentiment analysis, key phrase extraction, language detection and question answering. Further documentation can be found in :code:`\u003ca href=\"https://docs.microsoft.com/azure/cognitive-services/language-service/overview\"\u003ehttps://docs.microsoft.com/azure/cognitive-services/language-service/overview\u003c/a\u003e`.0.", + "host_value": null, + "parameterized_host_template": "\u0027{Endpoint}/language\u0027", + "azure_arm": false, + "has_lro_operations": true, + "client_side_validation": false, + "sync_imports": "{\"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}}, \"regular\": {\"azurecore\": {\"azure.core\": [\"PipelineClient\"], \"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"]}, \"local\": {\"._configuration\": [\"TextAnalyticsClientConfiguration\"], \".._serialization\": [\"Deserializer\", \"Serializer\"], \"._operations_mixin\": [\"TextAnalyticsClientOperationsMixin\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}}", + "async_imports": "{\"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}}, \"regular\": {\"azurecore\": {\"azure.core\": [\"AsyncPipelineClient\"], \"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"]}, \"local\": {\"._configuration\": [\"TextAnalyticsClientConfiguration\"], \"..._serialization\": [\"Deserializer\", \"Serializer\"], \"._operations_mixin\": [\"TextAnalyticsClientOperationsMixin\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"]}}}" + }, + "global_parameters": { + "sync": { + "credential": { + "signature": "credential, # type: \"TokenCredential\"", + "description": "Credential needed for the client to connect to Azure. Required.", + "docstring_type": "~azure.core.credentials.TokenCredential", + "required": true + }, + "endpoint": { + "signature": "endpoint, # type: str", + "description": "Supported Cognitive Services endpoint (e.g., https://:code:`\u003cresource-name\u003e`.api.cognitiveservices.azure.com). Required.", + "docstring_type": "str", + "required": true + } + }, + "async": { + "credential": { + "signature": "credential: \"AsyncTokenCredential\",", + "description": "Credential needed for the client to connect to Azure. Required.", + "docstring_type": "~azure.core.credentials_async.AsyncTokenCredential", + "required": true + }, + "endpoint": { + "signature": "endpoint: str,", + "description": "Supported Cognitive Services endpoint (e.g., https://:code:`\u003cresource-name\u003e`.api.cognitiveservices.azure.com). Required.", + "docstring_type": "str", + "required": true + } + }, + "constant": { + }, + "call": "credential, endpoint", + "service_client_specific": { + "sync": { + "api_version": { + "signature": "api_version=None, # type: Optional[str]", + "description": "API version to use if no profile is provided, or if missing in profile.", + "docstring_type": "str", + "required": false + }, + "profile": { + "signature": "profile=KnownProfiles.default, # type: KnownProfiles", + "description": "A profile definition, from KnownProfiles to dict.", + "docstring_type": "azure.profiles.KnownProfiles", + "required": false + } + }, + "async": { + "api_version": { + "signature": "api_version: Optional[str] = None,", + "description": "API version to use if no profile is provided, or if missing in profile.", + "docstring_type": "str", + "required": false + }, + "profile": { + "signature": "profile: KnownProfiles = KnownProfiles.default,", + "description": "A profile definition, from KnownProfiles to dict.", + "docstring_type": "azure.profiles.KnownProfiles", + "required": false + } + } + } + }, + "config": { + "credential": true, + "credential_scopes": ["https://cognitiveservices.azure.com/.default"], + "credential_call_sync": "policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)", + "credential_call_async": "policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)", + "sync_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"]}, \"local\": {\"._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}}", + "async_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"]}, \"local\": {\".._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"]}}}" + }, + "operation_groups": { + }, + "operation_mixins": { + "sync_imports": "{\"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"regular\": {\"local\": {\".\": [[\"models\", \"_models\"]]}, \"stdlib\": {\"typing\": [\"IO\", \"Optional\", \"Union\"]}, \"azurecore\": {\"...._lro\": [\"AnalyzeActionsLROPoller\"], \"azure.core.polling\": [\"LROPoller\"]}}}", + "async_imports": "{\"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"regular\": {\"local\": {\"..\": [[\"models\", \"_models\"]]}, \"stdlib\": {\"typing\": [\"IO\", \"Optional\", \"Union\"]}, \"azurecore\": {\".....aio._lro_async\": [\"AsyncAnalyzeActionsLROPoller\"], \"azure.core.polling\": [\"AsyncLROPoller\"]}}}", + "operations": { + "analyze_text" : { + "sync": { + "signature": "def analyze_text(\n self,\n body, # type: Union[_models.AnalyzeTextTask, IO]\n show_stats=None, # type: Optional[bool]\n **kwargs # type: Any\n):\n # type: (...) -\u003e _models.AnalyzeTextTaskResult\n", + "doc": "\"\"\"Request text analysis over a collection of documents.\n\nSubmit a collection of text documents for analysis. Specify a single unique task to be\nexecuted immediately.\n\n:param body: Collection of documents to analyze and a single task to execute. Is either a model\n type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask or IO\n:param show_stats: (Optional) if set to true, response will contain request and document level\n statistics. Default value is None.\n:type show_stats: bool\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextTaskResult or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, show_stats, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def analyze_text(\n self,\n body: Union[_models.AnalyzeTextTask, IO],\n show_stats: Optional[bool] = None,\n **kwargs: Any\n) -\u003e _models.AnalyzeTextTaskResult:\n", + "doc": "\"\"\"Request text analysis over a collection of documents.\n\nSubmit a collection of text documents for analysis. Specify a single unique task to be\nexecuted immediately.\n\n:param body: Collection of documents to analyze and a single task to execute. Is either a model\n type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask or IO\n:param show_stats: (Optional) if set to true, response will contain request and document level\n statistics. Default value is None.\n:type show_stats: bool\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextTaskResult or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, show_stats, **kwargs" + } + }, + "_analyze_text_submit_job_initial" : { + "sync": { + "signature": "def _analyze_text_submit_job_initial(\n self,\n body, # type: Union[_models.AnalyzeTextJobsInput, IO]\n **kwargs # type: Any\n):\n # type: (...) -\u003e Optional[_models.AnalyzeTextJobState]\n", + "doc": "\"\"\"Submit text analysis job.\n\nSubmit a collection of text documents for analysis. Specify one or more unique tasks to be\nexecuted as a long-running operation.\n\n:param body: Collection of documents to analyze and one or more tasks to execute. Is either a\n model type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextJobState or None or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def _analyze_text_submit_job_initial(\n self,\n body: Union[_models.AnalyzeTextJobsInput, IO],\n **kwargs: Any\n) -\u003e Optional[_models.AnalyzeTextJobState]:\n", + "doc": "\"\"\"Submit text analysis job.\n\nSubmit a collection of text documents for analysis. Specify one or more unique tasks to be\nexecuted as a long-running operation.\n\n:param body: Collection of documents to analyze and one or more tasks to execute. Is either a\n model type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextJobState or None or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, **kwargs" + } + }, + "begin_analyze_text_submit_job" : { + "sync": { + "signature": "def begin_analyze_text_submit_job(\n self,\n body, # type: Union[_models.AnalyzeTextJobsInput, IO]\n **kwargs # type: Any\n):\n # type: (...) -\u003e AnalyzeActionsLROPoller[_models.AnalyzeTextJobState]\n", + "doc": "\"\"\"Submit text analysis job.\n\nSubmit a collection of text documents for analysis. Specify one or more unique tasks to be\nexecuted as a long-running operation.\n\n:param body: Collection of documents to analyze and one or more tasks to execute. Is either a\n model type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be AnalyzeActionsLROPollingMethod. Pass\n in False for this operation to not poll, or pass in your own initialized polling object for a\n personal polling strategy.\n:paramtype polling: bool or ~azure.core.polling.PollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of AnalyzeActionsLROPoller that returns either AnalyzeTextJobState or the\n result of cls(response)\n:rtype:\n ~...._lro.AnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def begin_analyze_text_submit_job(\n self,\n body: Union[_models.AnalyzeTextJobsInput, IO],\n **kwargs: Any\n) -\u003e AsyncAnalyzeActionsLROPoller[_models.AnalyzeTextJobState]:\n", + "doc": "\"\"\"Submit text analysis job.\n\nSubmit a collection of text documents for analysis. Specify one or more unique tasks to be\nexecuted as a long-running operation.\n\n:param body: Collection of documents to analyze and one or more tasks to execute. Is either a\n model type or a IO type. Required.\n:type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be AsyncAnalyzeActionsLROPollingMethod.\n Pass in False for this operation to not poll, or pass in your own initialized polling object\n for a personal polling strategy.\n:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of AsyncAnalyzeActionsLROPoller that returns either AnalyzeTextJobState or\n the result of cls(response)\n:rtype:\n ~.....aio._lro_async.AsyncAnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "body, **kwargs" + } + }, + "analyze_text_job_status" : { + "sync": { + "signature": "def analyze_text_job_status(\n self,\n job_id, # type: str\n show_stats=None, # type: Optional[bool]\n top=None, # type: Optional[int]\n skip=None, # type: Optional[int]\n **kwargs # type: Any\n):\n # type: (...) -\u003e _models.AnalyzeTextJobState\n", + "doc": "\"\"\"Get analysis status and results.\n\nGet the status of an analysis job. A job may consist of one or more tasks. Once all tasks are\nsucceeded, the job will transition to the succeeded state and results will be available for\neach task.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:param show_stats: (Optional) if set to true, response will contain request and document level\n statistics. Default value is None.\n:type show_stats: bool\n:param top: The maximum number of resources to return from the collection. Default value is\n None.\n:type top: int\n:param skip: An offset into the collection of the first resource to be returned. Default value\n is None.\n:type skip: int\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextJobState or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, show_stats, top, skip, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def analyze_text_job_status(\n self,\n job_id: str,\n show_stats: Optional[bool] = None,\n top: Optional[int] = None,\n skip: Optional[int] = None,\n **kwargs: Any\n) -\u003e _models.AnalyzeTextJobState:\n", + "doc": "\"\"\"Get analysis status and results.\n\nGet the status of an analysis job. A job may consist of one or more tasks. Once all tasks are\nsucceeded, the job will transition to the succeeded state and results will be available for\neach task.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:param show_stats: (Optional) if set to true, response will contain request and document level\n statistics. Default value is None.\n:type show_stats: bool\n:param top: The maximum number of resources to return from the collection. Default value is\n None.\n:type top: int\n:param skip: An offset into the collection of the first resource to be returned. Default value\n is None.\n:type skip: int\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: AnalyzeTextJobState or the result of cls(response)\n:rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, show_stats, top, skip, **kwargs" + } + }, + "_analyze_text_cancel_job_initial" : { + "sync": { + "signature": "def _analyze_text_cancel_job_initial( # pylint: disable=inconsistent-return-statements\n self,\n job_id, # type: str\n **kwargs # type: Any\n):\n # type: (...) -\u003e None\n", + "doc": "\"\"\"Cancel a long-running Text Analysis job.\n\nCancel a long-running Text Analysis job.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def _analyze_text_cancel_job_initial( # pylint: disable=inconsistent-return-statements\n self,\n job_id: str,\n **kwargs: Any\n) -\u003e None:\n", + "doc": "\"\"\"Cancel a long-running Text Analysis job.\n\nCancel a long-running Text Analysis job.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, **kwargs" + } + }, + "begin_analyze_text_cancel_job" : { + "sync": { + "signature": "def begin_analyze_text_cancel_job(\n self,\n job_id, # type: str\n **kwargs # type: Any\n):\n # type: (...) -\u003e LROPoller[None]\n", + "doc": "\"\"\"Cancel a long-running Text Analysis job.\n\nCancel a long-running Text Analysis job.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be LROBasePolling. Pass in False for\n this operation to not poll, or pass in your own initialized polling object for a personal\n polling strategy.\n:paramtype polling: bool or ~azure.core.polling.PollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of LROPoller that returns either None or the result of cls(response)\n:rtype: ~azure.core.polling.LROPoller[None]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, **kwargs" + }, + "async": { + "coroutine": true, + "signature": "async def begin_analyze_text_cancel_job(\n self,\n job_id: str,\n **kwargs: Any\n) -\u003e AsyncLROPoller[None]:\n", + "doc": "\"\"\"Cancel a long-running Text Analysis job.\n\nCancel a long-running Text Analysis job.\n\n:param job_id: Job ID. Required.\n:type job_id: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be AsyncLROBasePolling. Pass in False\n for this operation to not poll, or pass in your own initialized polling object for a personal\n polling strategy.\n:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)\n:rtype: ~azure.core.polling.AsyncLROPoller[None]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"", + "call": "job_id, **kwargs" + } + } + } + } +} \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_patch.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_text_analytics_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_text_analytics_client.py new file mode 100644 index 000000000000..4b67e42bc0e6 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_text_analytics_client.py @@ -0,0 +1,100 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, TYPE_CHECKING + +from azure.core import PipelineClient +from azure.core.rest import HttpRequest, HttpResponse + +from . import models +from .._serialization import Deserializer, Serializer +from ._configuration import TextAnalyticsClientConfiguration +from .operations import TextAnalyticsClientOperationsMixin + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + +class TextAnalyticsClient(TextAnalyticsClientOperationsMixin): # pylint: disable=client-accepts-api-version-keyword + """The language service API is a suite of natural language processing (NLP) skills built with + best-in-class Microsoft machine learning algorithms. The API can be used to analyze + unstructured text for tasks such as sentiment analysis, key phrase extraction, language + detection and question answering. Further documentation can be found in :code:`https://docs.microsoft.com/azure/cognitive-services/language-service/overview`.0. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param endpoint: Supported Cognitive Services endpoint (e.g., + https://:code:``.api.cognitiveservices.azure.com). Required. + :type endpoint: str + :keyword api_version: Api Version. Default value is "2022-10-01-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "TokenCredential", + endpoint: str, + **kwargs: Any + ) -> None: + _endpoint = '{Endpoint}/language' + self._config = TextAnalyticsClientConfiguration(credential=credential, endpoint=endpoint, **kwargs) + self._client = PipelineClient(base_url=_endpoint, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + + + def _send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> HttpResponse: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.HttpResponse + """ + + request_copy = deepcopy(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + request_copy.url = self._client.format_url(request_copy.url, **path_format_arguments) + return self._client.send_request(request_copy, **kwargs) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> TextAnalyticsClient + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_vendor.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_vendor.py new file mode 100644 index 000000000000..0eb3a4e5d74e --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/_vendor.py @@ -0,0 +1,45 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from abc import ABC +from typing import TYPE_CHECKING + +from azure.core.pipeline.transport import HttpRequest + +from ._configuration import TextAnalyticsClientConfiguration + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core import PipelineClient + + from .._serialization import Deserializer, Serializer + +def _convert_request(request, files=None): + data = request.content if not files else None + request = HttpRequest(method=request.method, url=request.url, headers=request.headers, data=data) + if files: + request.set_formdata_body(files) + return request + +def _format_url_section(template, **kwargs): + components = template.split("/") + while components: + try: + return template.format(**kwargs) + except KeyError as key: + formatted_components = template.split("/") + components = [ + c for c in formatted_components if "{}".format(key.args[0]) not in c + ] + template = "/".join(components) + +class MixinABC(ABC): + """DO NOT use this class. It is for internal typing use only.""" + _client: "PipelineClient" + _config: TextAnalyticsClientConfiguration + _serialize: "Serializer" + _deserialize: "Deserializer" diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/__init__.py new file mode 100644 index 000000000000..5a61b782b9af --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/__init__.py @@ -0,0 +1,20 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._text_analytics_client import TextAnalyticsClient + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk +__all__ = ['TextAnalyticsClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) + +_patch_sdk() diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_configuration.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_configuration.py new file mode 100644 index 000000000000..5cdab16e7c26 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_configuration.py @@ -0,0 +1,71 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +VERSION = "unknown" + +class TextAnalyticsClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for TextAnalyticsClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param endpoint: Supported Cognitive Services endpoint (e.g., + https://:code:``.api.cognitiveservices.azure.com). Required. + :type endpoint: str + :keyword api_version: Api Version. Default value is "2022-10-01-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + endpoint: str, + **kwargs: Any + ) -> None: + super(TextAnalyticsClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-10-01-preview") # type: str + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if endpoint is None: + raise ValueError("Parameter 'endpoint' must not be None.") + + self.credential = credential + self.endpoint = endpoint + self.api_version = api_version + self.credential_scopes = kwargs.pop('credential_scopes', ['https://cognitiveservices.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'ai-textanalytics/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_patch.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_text_analytics_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_text_analytics_client.py new file mode 100644 index 000000000000..da0943693259 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_text_analytics_client.py @@ -0,0 +1,97 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Awaitable, TYPE_CHECKING + +from azure.core import AsyncPipelineClient +from azure.core.rest import AsyncHttpResponse, HttpRequest + +from .. import models +from ..._serialization import Deserializer, Serializer +from ._configuration import TextAnalyticsClientConfiguration +from .operations import TextAnalyticsClientOperationsMixin + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +class TextAnalyticsClient(TextAnalyticsClientOperationsMixin): # pylint: disable=client-accepts-api-version-keyword + """The language service API is a suite of natural language processing (NLP) skills built with + best-in-class Microsoft machine learning algorithms. The API can be used to analyze + unstructured text for tasks such as sentiment analysis, key phrase extraction, language + detection and question answering. Further documentation can be found in :code:`https://docs.microsoft.com/azure/cognitive-services/language-service/overview`.0. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param endpoint: Supported Cognitive Services endpoint (e.g., + https://:code:``.api.cognitiveservices.azure.com). Required. + :type endpoint: str + :keyword api_version: Api Version. Default value is "2022-10-01-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + endpoint: str, + **kwargs: Any + ) -> None: + _endpoint = '{Endpoint}/language' + self._config = TextAnalyticsClientConfiguration(credential=credential, endpoint=endpoint, **kwargs) + self._client = AsyncPipelineClient(base_url=_endpoint, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + + + def _send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> Awaitable[AsyncHttpResponse]: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = await client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.AsyncHttpResponse + """ + + request_copy = deepcopy(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + request_copy.url = self._client.format_url(request_copy.url, **path_format_arguments) + return self._client.send_request(request_copy, **kwargs) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "TextAnalyticsClient": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_vendor.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_vendor.py new file mode 100644 index 000000000000..99dd8eda3b62 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/_vendor.py @@ -0,0 +1,27 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from abc import ABC +from typing import TYPE_CHECKING + +from azure.core.pipeline.transport import HttpRequest + +from ._configuration import TextAnalyticsClientConfiguration + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core import AsyncPipelineClient + + from ..._serialization import Deserializer, Serializer + + +class MixinABC(ABC): + """DO NOT use this class. It is for internal typing use only.""" + _client: "AsyncPipelineClient" + _config: TextAnalyticsClientConfiguration + _serialize: "Serializer" + _deserialize: "Deserializer" diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/__init__.py new file mode 100644 index 000000000000..714c39805ebe --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._text_analytics_client_operations import TextAnalyticsClientOperationsMixin + +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'TextAnalyticsClientOperationsMixin', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_patch.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_patch.py new file mode 100644 index 000000000000..9f1ad75700bb --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_patch.py @@ -0,0 +1,121 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import Any, Callable, Dict, Optional, TypeVar, Union, cast, List + +from .....aio._lro_async import AsyncAnalyzeActionsLROPoller, AsyncAnalyzeActionsLROPollingMethod +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from ._text_analytics_client_operations import TextAnalyticsClientOperationsMixin as GeneratedTextAnalyticsClientOperationsMixin + +from ... import models as _models +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + + +class TextAnalyticsClientOperationsMixin(GeneratedTextAnalyticsClientOperationsMixin): + + @distributed_trace_async + async def begin_analyze_text_submit_job( + self, + body: _models.AnalyzeTextJobsInput, + **kwargs: Any + ) -> AsyncAnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncAnalyzeActionsLROPollingMethod. + Pass in False for this operation to not poll, or pass in your own initialized polling object + for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncAnalyzeActionsLROPoller that returns either AnalyzeTextJobState or + the result of cls(response) + :rtype: + ~.....aio._lro_async.AsyncAnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + poller_cls = kwargs.pop("poller_cls", AsyncAnalyzeActionsLROPoller) # Handwritten + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._analyze_text_submit_job_initial( # type: ignore + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncAnalyzeActionsLROPollingMethod( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return poller_cls.from_continuation_token( # Handwritten + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return poller_cls(self._client, raw_result, get_long_running_output, polling_method) # Handwritten + + begin_analyze_text_submit_job.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + +__all__: List[str] = ["TextAnalyticsClientOperationsMixin"] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_text_analytics_client_operations.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_text_analytics_client_operations.py new file mode 100644 index 000000000000..cd189bd8a584 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/aio/operations/_text_analytics_client_operations.py @@ -0,0 +1,603 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from .....aio._lro_async import AsyncAnalyzeActionsLROPoller, AsyncAnalyzeActionsLROPollingMethod +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.polling.async_base_polling import AsyncLROBasePolling +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._text_analytics_client_operations import build_analyze_text_cancel_job_request, build_analyze_text_job_status_request, build_analyze_text_request, build_analyze_text_submit_job_request +from .._vendor import MixinABC +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class TextAnalyticsClientOperationsMixin(MixinABC): + + @overload + async def analyze_text( + self, + body: _models.AnalyzeTextTask, + show_stats: Optional[bool] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def analyze_text( + self, + body: IO, + show_stats: Optional[bool] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Required. + :type body: IO + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + + + @distributed_trace_async + async def analyze_text( + self, + body: Union[_models.AnalyzeTextTask, IO], + show_stats: Optional[bool] = None, + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Is either a model + type or a IO type. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask or IO + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextTaskResult] + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IO, bytes)): + _content = body + else: + _json = self._serialize.body(body, 'AnalyzeTextTask') + + request = build_analyze_text_request( + show_stats=show_stats, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self.analyze_text.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('AnalyzeTextTaskResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + analyze_text.metadata = {'url': "/:analyze-text"} # type: ignore + + + async def _analyze_text_submit_job_initial( + self, + body: Union[_models.AnalyzeTextJobsInput, IO], + **kwargs: Any + ) -> Optional[_models.AnalyzeTextJobState]: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.AnalyzeTextJobState]] + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IO, bytes)): + _content = body + else: + _json = self._serialize.body(body, 'AnalyzeTextJobsInput') + + request = build_analyze_text_submit_job_request( + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._analyze_text_submit_job_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + + if response.status_code == 202: + response_headers['Operation-Location']=self._deserialize('str', response.headers.get('Operation-Location')) + + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _analyze_text_submit_job_initial.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + + @overload + async def begin_analyze_text_submit_job( + self, + body: _models.AnalyzeTextJobsInput, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncAnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncAnalyzeActionsLROPollingMethod. + Pass in False for this operation to not poll, or pass in your own initialized polling object + for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncAnalyzeActionsLROPoller that returns either AnalyzeTextJobState or + the result of cls(response) + :rtype: + ~.....aio._lro_async.AsyncAnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_analyze_text_submit_job( + self, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncAnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncAnalyzeActionsLROPollingMethod. + Pass in False for this operation to not poll, or pass in your own initialized polling object + for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncAnalyzeActionsLROPoller that returns either AnalyzeTextJobState or + the result of cls(response) + :rtype: + ~.....aio._lro_async.AsyncAnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + + @distributed_trace_async + async def begin_analyze_text_submit_job( + self, + body: Union[_models.AnalyzeTextJobsInput, IO], + **kwargs: Any + ) -> AsyncAnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Is either a + model type or a IO type. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncAnalyzeActionsLROPollingMethod. + Pass in False for this operation to not poll, or pass in your own initialized polling object + for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncAnalyzeActionsLROPoller that returns either AnalyzeTextJobState or + the result of cls(response) + :rtype: + ~.....aio._lro_async.AsyncAnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._analyze_text_submit_job_initial( # type: ignore + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncAnalyzeActionsLROPollingMethod( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: polling_method = polling + if cont_token: + return AsyncAnalyzeActionsLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncAnalyzeActionsLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_analyze_text_submit_job.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + @distributed_trace_async + async def analyze_text_job_status( + self, + job_id: str, + show_stats: Optional[bool] = None, + top: Optional[int] = None, + skip: Optional[int] = None, + **kwargs: Any + ) -> _models.AnalyzeTextJobState: + """Get analysis status and results. + + Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are + succeeded, the job will transition to the succeeded state and results will be available for + each task. + + :param job_id: Job ID. Required. + :type job_id: str + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :param top: The maximum number of resources to return from the collection. Default value is + None. + :type top: int + :param skip: An offset into the collection of the first resource to be returned. Default value + is None. + :type skip: int + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextJobState or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + + + request = build_analyze_text_job_status_request( + job_id=job_id, + show_stats=show_stats, + top=top, + skip=skip, + api_version=api_version, + template_url=self.analyze_text_job_status.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + analyze_text_job_status.metadata = {'url': "/analyze-text/jobs/{jobId}"} # type: ignore + + + async def _analyze_text_cancel_job_initial( # pylint: disable=inconsistent-return-statements + self, + job_id: str, + **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + + + request = build_analyze_text_cancel_job_request( + job_id=job_id, + api_version=api_version, + template_url=self._analyze_text_cancel_job_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Operation-Location']=self._deserialize('str', response.headers.get('Operation-Location')) + + + if cls: + return cls(pipeline_response, None, response_headers) + + _analyze_text_cancel_job_initial.metadata = {'url': "/analyze-text/jobs/{jobId}:cancel"} # type: ignore + + + @distributed_trace_async + async def begin_analyze_text_cancel_job( + self, + job_id: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Cancel a long-running Text Analysis job. + + Cancel a long-running Text Analysis job. + + :param job_id: Job ID. Required. + :type job_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncLROBasePolling. Pass in False + for this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._analyze_text_cancel_job_initial( # type: ignore + job_id=job_id, + api_version=api_version, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(AsyncPollingMethod, AsyncLROBasePolling( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: AsyncPollingMethod + elif polling is False: polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_analyze_text_cancel_job.metadata = {'url': "/analyze-text/jobs/{jobId}:cancel"} # type: ignore diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/__init__.py new file mode 100644 index 000000000000..d2570eda579b --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/__init__.py @@ -0,0 +1,407 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._models_py3 import AbstractiveSummarizationLROResult +from ._models_py3 import AbstractiveSummarizationLROTask +from ._models_py3 import AbstractiveSummarizationResult +from ._models_py3 import AbstractiveSummarizationResultBase +from ._models_py3 import AbstractiveSummarizationResultBaseDocumentsItem +from ._models_py3 import AbstractiveSummarizationTaskParameters +from ._models_py3 import AbstractiveSummarizationTaskParametersBase +from ._models_py3 import AbstractiveSummary +from ._models_py3 import AbstractiveSummaryDocumentResult +from ._models_py3 import AgeResolution +from ._models_py3 import AnalyzeTextDynamicClassificationInput +from ._models_py3 import AnalyzeTextEntityLinkingInput +from ._models_py3 import AnalyzeTextEntityRecognitionInput +from ._models_py3 import AnalyzeTextJobState +from ._models_py3 import AnalyzeTextJobStatistics +from ._models_py3 import AnalyzeTextJobsInput +from ._models_py3 import AnalyzeTextKeyPhraseExtractionInput +from ._models_py3 import AnalyzeTextLROResult +from ._models_py3 import AnalyzeTextLROTask +from ._models_py3 import AnalyzeTextLanguageDetectionInput +from ._models_py3 import AnalyzeTextPiiEntitiesRecognitionInput +from ._models_py3 import AnalyzeTextSentimentAnalysisInput +from ._models_py3 import AnalyzeTextTask +from ._models_py3 import AnalyzeTextTaskResult +from ._models_py3 import AreaResolution +from ._models_py3 import BaseResolution +from ._models_py3 import BooleanResolution +from ._models_py3 import ClassificationDocumentResult +from ._models_py3 import ClassificationResult +from ._models_py3 import CurrencyResolution +from ._models_py3 import CustomEntitiesLROTask +from ._models_py3 import CustomEntitiesResult +from ._models_py3 import CustomEntitiesResultDocumentsItem +from ._models_py3 import CustomEntitiesTaskParameters +from ._models_py3 import CustomEntityRecognitionLROResult +from ._models_py3 import CustomLabelClassificationResult +from ._models_py3 import CustomLabelClassificationResultDocumentsItem +from ._models_py3 import CustomMultiLabelClassificationLROResult +from ._models_py3 import CustomMultiLabelClassificationLROTask +from ._models_py3 import CustomMultiLabelClassificationTaskParameters +from ._models_py3 import CustomResult +from ._models_py3 import CustomSingleLabelClassificationLROResult +from ._models_py3 import CustomSingleLabelClassificationLROTask +from ._models_py3 import CustomSingleLabelClassificationTaskParameters +from ._models_py3 import CustomTaskParameters +from ._models_py3 import DateTimeResolution +from ._models_py3 import DetectedLanguage +from ._models_py3 import DocumentDetectedLanguage +from ._models_py3 import DocumentError +from ._models_py3 import DocumentRequestStatistics +from ._models_py3 import DocumentResult +from ._models_py3 import DocumentStatistics +from ._models_py3 import DocumentWarning +from ._models_py3 import DynamicClassificationResult +from ._models_py3 import DynamicClassificationResultDocumentsItem +from ._models_py3 import DynamicClassificationTaskParameters +from ._models_py3 import DynamicClassificationTaskResult +from ._models_py3 import EntitiesDocumentResult +from ._models_py3 import EntitiesLROTask +from ._models_py3 import EntitiesResult +from ._models_py3 import EntitiesResultDocumentsItem +from ._models_py3 import EntitiesTaskParameters +from ._models_py3 import EntitiesTaskResult +from ._models_py3 import Entity +from ._models_py3 import EntityLinkingLROResult +from ._models_py3 import EntityLinkingLROTask +from ._models_py3 import EntityLinkingResult +from ._models_py3 import EntityLinkingResultDocumentsItem +from ._models_py3 import EntityLinkingTaskParameters +from ._models_py3 import EntityLinkingTaskResult +from ._models_py3 import EntityRecognitionLROResult +from ._models_py3 import EntityWithResolution +from ._models_py3 import Error +from ._models_py3 import ErrorResponse +from ._models_py3 import ExtractedSummaryDocumentResult +from ._models_py3 import ExtractedSummarySentence +from ._models_py3 import ExtractiveSummarizationLROResult +from ._models_py3 import ExtractiveSummarizationLROTask +from ._models_py3 import ExtractiveSummarizationResult +from ._models_py3 import ExtractiveSummarizationResultDocumentsItem +from ._models_py3 import ExtractiveSummarizationTaskParameters +from ._models_py3 import HealthcareAssertion +from ._models_py3 import HealthcareEntitiesDocumentResult +from ._models_py3 import HealthcareEntity +from ._models_py3 import HealthcareEntityLink +from ._models_py3 import HealthcareLROResult +from ._models_py3 import HealthcareLROTask +from ._models_py3 import HealthcareRelation +from ._models_py3 import HealthcareRelationEntity +from ._models_py3 import HealthcareResult +from ._models_py3 import HealthcareResultDocumentsItem +from ._models_py3 import HealthcareTaskParameters +from ._models_py3 import InformationResolution +from ._models_py3 import InnerErrorModel +from ._models_py3 import InputError +from ._models_py3 import JobState +from ._models_py3 import KeyPhraseExtractionLROResult +from ._models_py3 import KeyPhraseLROTask +from ._models_py3 import KeyPhraseResult +from ._models_py3 import KeyPhraseResultDocumentsItem +from ._models_py3 import KeyPhraseTaskParameters +from ._models_py3 import KeyPhraseTaskResult +from ._models_py3 import KeyPhrasesDocumentResult +from ._models_py3 import LanguageDetectionAnalysisInput +from ._models_py3 import LanguageDetectionDocumentResult +from ._models_py3 import LanguageDetectionResult +from ._models_py3 import LanguageDetectionTaskParameters +from ._models_py3 import LanguageDetectionTaskResult +from ._models_py3 import LanguageInput +from ._models_py3 import LengthResolution +from ._models_py3 import LinkedEntitiesDocumentResult +from ._models_py3 import LinkedEntity +from ._models_py3 import Match +from ._models_py3 import MultiLanguageAnalysisInput +from ._models_py3 import MultiLanguageInput +from ._models_py3 import NumberResolution +from ._models_py3 import NumericRangeResolution +from ._models_py3 import OrdinalResolution +from ._models_py3 import Pagination +from ._models_py3 import PhraseControl +from ._models_py3 import PiiEntitiesDocumentResult +from ._models_py3 import PiiEntityRecognitionLROResult +from ._models_py3 import PiiLROTask +from ._models_py3 import PiiResult +from ._models_py3 import PiiResultDocumentsItem +from ._models_py3 import PiiTaskParameters +from ._models_py3 import PiiTaskResult +from ._models_py3 import PreBuiltResult +from ._models_py3 import PreBuiltTaskParameters +from ._models_py3 import QuantityResolution +from ._models_py3 import RequestStatistics +from ._models_py3 import SentenceAssessment +from ._models_py3 import SentenceSentiment +from ._models_py3 import SentenceTarget +from ._models_py3 import SentimentAnalysisLROTask +from ._models_py3 import SentimentAnalysisTaskParameters +from ._models_py3 import SentimentConfidenceScorePerLabel +from ._models_py3 import SentimentDocumentResult +from ._models_py3 import SentimentLROResult +from ._models_py3 import SentimentResponse +from ._models_py3 import SentimentResponseDocumentsItem +from ._models_py3 import SentimentTaskResult +from ._models_py3 import SpeedResolution +from ._models_py3 import SummaryContext +from ._models_py3 import TargetConfidenceScoreLabel +from ._models_py3 import TargetRelation +from ._models_py3 import TaskIdentifier +from ._models_py3 import TaskParameters +from ._models_py3 import TaskState +from ._models_py3 import TasksState +from ._models_py3 import TasksStateTasks +from ._models_py3 import TemperatureResolution +from ._models_py3 import TemporalSpanResolution +from ._models_py3 import VolumeResolution +from ._models_py3 import WeightResolution + + +from ._text_analytics_client_enums import AgeUnit +from ._text_analytics_client_enums import AnalyzeTextLROResultsKind +from ._text_analytics_client_enums import AnalyzeTextLROTaskKind +from ._text_analytics_client_enums import AnalyzeTextTaskKind +from ._text_analytics_client_enums import AnalyzeTextTaskResultsKind +from ._text_analytics_client_enums import AreaUnit +from ._text_analytics_client_enums import Association +from ._text_analytics_client_enums import Certainty +from ._text_analytics_client_enums import ClassificationType +from ._text_analytics_client_enums import Conditionality +from ._text_analytics_client_enums import DateTimeSubKind +from ._text_analytics_client_enums import DocumentSentimentValue +from ._text_analytics_client_enums import ErrorCode +from ._text_analytics_client_enums import ExtractiveSummarizationSortingCriteria +from ._text_analytics_client_enums import FhirVersion +from ._text_analytics_client_enums import HealthcareDocumentType +from ._text_analytics_client_enums import HealthcareEntityCategory +from ._text_analytics_client_enums import InformationUnit +from ._text_analytics_client_enums import InnerErrorCode +from ._text_analytics_client_enums import LengthUnit +from ._text_analytics_client_enums import NumberKind +from ._text_analytics_client_enums import PhraseControlStrategy +from ._text_analytics_client_enums import PiiCategory +from ._text_analytics_client_enums import PiiDomain +from ._text_analytics_client_enums import RangeKind +from ._text_analytics_client_enums import RelationType +from ._text_analytics_client_enums import RelativeTo +from ._text_analytics_client_enums import ResolutionKind +from ._text_analytics_client_enums import ScriptKind +from ._text_analytics_client_enums import SentenceSentimentValue +from ._text_analytics_client_enums import SpeedUnit +from ._text_analytics_client_enums import State +from ._text_analytics_client_enums import StringIndexType +from ._text_analytics_client_enums import TargetRelationType +from ._text_analytics_client_enums import TemperatureUnit +from ._text_analytics_client_enums import TemporalModifier +from ._text_analytics_client_enums import TokenSentimentValue +from ._text_analytics_client_enums import VolumeUnit +from ._text_analytics_client_enums import WarningCodeValue +from ._text_analytics_client_enums import WeightUnit +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'AbstractiveSummarizationLROResult', + 'AbstractiveSummarizationLROTask', + 'AbstractiveSummarizationResult', + 'AbstractiveSummarizationResultBase', + 'AbstractiveSummarizationResultBaseDocumentsItem', + 'AbstractiveSummarizationTaskParameters', + 'AbstractiveSummarizationTaskParametersBase', + 'AbstractiveSummary', + 'AbstractiveSummaryDocumentResult', + 'AgeResolution', + 'AnalyzeTextDynamicClassificationInput', + 'AnalyzeTextEntityLinkingInput', + 'AnalyzeTextEntityRecognitionInput', + 'AnalyzeTextJobState', + 'AnalyzeTextJobStatistics', + 'AnalyzeTextJobsInput', + 'AnalyzeTextKeyPhraseExtractionInput', + 'AnalyzeTextLROResult', + 'AnalyzeTextLROTask', + 'AnalyzeTextLanguageDetectionInput', + 'AnalyzeTextPiiEntitiesRecognitionInput', + 'AnalyzeTextSentimentAnalysisInput', + 'AnalyzeTextTask', + 'AnalyzeTextTaskResult', + 'AreaResolution', + 'BaseResolution', + 'BooleanResolution', + 'ClassificationDocumentResult', + 'ClassificationResult', + 'CurrencyResolution', + 'CustomEntitiesLROTask', + 'CustomEntitiesResult', + 'CustomEntitiesResultDocumentsItem', + 'CustomEntitiesTaskParameters', + 'CustomEntityRecognitionLROResult', + 'CustomLabelClassificationResult', + 'CustomLabelClassificationResultDocumentsItem', + 'CustomMultiLabelClassificationLROResult', + 'CustomMultiLabelClassificationLROTask', + 'CustomMultiLabelClassificationTaskParameters', + 'CustomResult', + 'CustomSingleLabelClassificationLROResult', + 'CustomSingleLabelClassificationLROTask', + 'CustomSingleLabelClassificationTaskParameters', + 'CustomTaskParameters', + 'DateTimeResolution', + 'DetectedLanguage', + 'DocumentDetectedLanguage', + 'DocumentError', + 'DocumentRequestStatistics', + 'DocumentResult', + 'DocumentStatistics', + 'DocumentWarning', + 'DynamicClassificationResult', + 'DynamicClassificationResultDocumentsItem', + 'DynamicClassificationTaskParameters', + 'DynamicClassificationTaskResult', + 'EntitiesDocumentResult', + 'EntitiesLROTask', + 'EntitiesResult', + 'EntitiesResultDocumentsItem', + 'EntitiesTaskParameters', + 'EntitiesTaskResult', + 'Entity', + 'EntityLinkingLROResult', + 'EntityLinkingLROTask', + 'EntityLinkingResult', + 'EntityLinkingResultDocumentsItem', + 'EntityLinkingTaskParameters', + 'EntityLinkingTaskResult', + 'EntityRecognitionLROResult', + 'EntityWithResolution', + 'Error', + 'ErrorResponse', + 'ExtractedSummaryDocumentResult', + 'ExtractedSummarySentence', + 'ExtractiveSummarizationLROResult', + 'ExtractiveSummarizationLROTask', + 'ExtractiveSummarizationResult', + 'ExtractiveSummarizationResultDocumentsItem', + 'ExtractiveSummarizationTaskParameters', + 'HealthcareAssertion', + 'HealthcareEntitiesDocumentResult', + 'HealthcareEntity', + 'HealthcareEntityLink', + 'HealthcareLROResult', + 'HealthcareLROTask', + 'HealthcareRelation', + 'HealthcareRelationEntity', + 'HealthcareResult', + 'HealthcareResultDocumentsItem', + 'HealthcareTaskParameters', + 'InformationResolution', + 'InnerErrorModel', + 'InputError', + 'JobState', + 'KeyPhraseExtractionLROResult', + 'KeyPhraseLROTask', + 'KeyPhraseResult', + 'KeyPhraseResultDocumentsItem', + 'KeyPhraseTaskParameters', + 'KeyPhraseTaskResult', + 'KeyPhrasesDocumentResult', + 'LanguageDetectionAnalysisInput', + 'LanguageDetectionDocumentResult', + 'LanguageDetectionResult', + 'LanguageDetectionTaskParameters', + 'LanguageDetectionTaskResult', + 'LanguageInput', + 'LengthResolution', + 'LinkedEntitiesDocumentResult', + 'LinkedEntity', + 'Match', + 'MultiLanguageAnalysisInput', + 'MultiLanguageInput', + 'NumberResolution', + 'NumericRangeResolution', + 'OrdinalResolution', + 'Pagination', + 'PhraseControl', + 'PiiEntitiesDocumentResult', + 'PiiEntityRecognitionLROResult', + 'PiiLROTask', + 'PiiResult', + 'PiiResultDocumentsItem', + 'PiiTaskParameters', + 'PiiTaskResult', + 'PreBuiltResult', + 'PreBuiltTaskParameters', + 'QuantityResolution', + 'RequestStatistics', + 'SentenceAssessment', + 'SentenceSentiment', + 'SentenceTarget', + 'SentimentAnalysisLROTask', + 'SentimentAnalysisTaskParameters', + 'SentimentConfidenceScorePerLabel', + 'SentimentDocumentResult', + 'SentimentLROResult', + 'SentimentResponse', + 'SentimentResponseDocumentsItem', + 'SentimentTaskResult', + 'SpeedResolution', + 'SummaryContext', + 'TargetConfidenceScoreLabel', + 'TargetRelation', + 'TaskIdentifier', + 'TaskParameters', + 'TaskState', + 'TasksState', + 'TasksStateTasks', + 'TemperatureResolution', + 'TemporalSpanResolution', + 'VolumeResolution', + 'WeightResolution', + 'AgeUnit', + 'AnalyzeTextLROResultsKind', + 'AnalyzeTextLROTaskKind', + 'AnalyzeTextTaskKind', + 'AnalyzeTextTaskResultsKind', + 'AreaUnit', + 'Association', + 'Certainty', + 'ClassificationType', + 'Conditionality', + 'DateTimeSubKind', + 'DocumentSentimentValue', + 'ErrorCode', + 'ExtractiveSummarizationSortingCriteria', + 'FhirVersion', + 'HealthcareDocumentType', + 'HealthcareEntityCategory', + 'InformationUnit', + 'InnerErrorCode', + 'LengthUnit', + 'NumberKind', + 'PhraseControlStrategy', + 'PiiCategory', + 'PiiDomain', + 'RangeKind', + 'RelationType', + 'RelativeTo', + 'ResolutionKind', + 'ScriptKind', + 'SentenceSentimentValue', + 'SpeedUnit', + 'State', + 'StringIndexType', + 'TargetRelationType', + 'TemperatureUnit', + 'TemporalModifier', + 'TokenSentimentValue', + 'VolumeUnit', + 'WarningCodeValue', + 'WeightUnit', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_models_py3.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_models_py3.py new file mode 100644 index 000000000000..2ce695cd3d1c --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_models_py3.py @@ -0,0 +1,8431 @@ +# coding=utf-8 +# pylint: disable=too-many-lines +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +import datetime +from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union + +from ... import _serialization + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from .. import models as _models + + +class TaskIdentifier(_serialization.Model): + """Base task object. + + :ivar task_name: + :vartype task_name: str + """ + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + """ + super().__init__(**kwargs) + self.task_name = task_name + + +class TaskState(_serialization.Model): + """Returns the current state of the task. + + All required parameters must be populated in order to send to Azure. + + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + } + + _attribute_map = { + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + **kwargs + ): + """ + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + """ + super().__init__(**kwargs) + self.last_update_date_time = last_update_date_time + self.status = status + + +class AnalyzeTextLROResult(TaskState, TaskIdentifier): + """AnalyzeTextLROResult. + + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + AbstractiveSummarizationLROResult, CustomEntityRecognitionLROResult, + CustomMultiLabelClassificationLROResult, CustomSingleLabelClassificationLROResult, + EntityLinkingLROResult, EntityRecognitionLROResult, ExtractiveSummarizationLROResult, + HealthcareLROResult, KeyPhraseExtractionLROResult, PiiEntityRecognitionLROResult, + SentimentLROResult + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + } + + _subtype_map = { + 'kind': {'AbstractiveSummarizationLROResults': 'AbstractiveSummarizationLROResult', 'CustomEntityRecognitionLROResults': 'CustomEntityRecognitionLROResult', 'CustomMultiLabelClassificationLROResults': 'CustomMultiLabelClassificationLROResult', 'CustomSingleLabelClassificationLROResults': 'CustomSingleLabelClassificationLROResult', 'EntityLinkingLROResults': 'EntityLinkingLROResult', 'EntityRecognitionLROResults': 'EntityRecognitionLROResult', 'ExtractiveSummarizationLROResults': 'ExtractiveSummarizationLROResult', 'HealthcareLROResults': 'HealthcareLROResult', 'KeyPhraseExtractionLROResults': 'KeyPhraseExtractionLROResult', 'PiiEntityRecognitionLROResults': 'PiiEntityRecognitionLROResult', 'SentimentAnalysisLROResults': 'SentimentLROResult'} + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + """ + super().__init__(last_update_date_time=last_update_date_time, status=status, task_name=task_name, **kwargs) + self.task_name = task_name + self.kind = None # type: Optional[str] + self.last_update_date_time = last_update_date_time + self.status = status + + +class AbstractiveSummarizationLROResult(AnalyzeTextLROResult): + """An object representing the results for an Abstractive Summarization task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: An object representing the pre-build summarization results of each document. + Required. + :vartype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "AbstractiveSummarizationResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.AbstractiveSummarizationResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: An object representing the pre-build summarization results of each document. + Required. + :paramtype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'AbstractiveSummarizationLROResults' # type: str + self.results = results + + +class AnalyzeTextLROTask(TaskIdentifier): + """AnalyzeTextLROTask. + + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + AbstractiveSummarizationLROTask, CustomEntitiesLROTask, CustomMultiLabelClassificationLROTask, + CustomSingleLabelClassificationLROTask, EntityLinkingLROTask, EntitiesLROTask, + ExtractiveSummarizationLROTask, HealthcareLROTask, KeyPhraseLROTask, PiiLROTask, + SentimentAnalysisLROTask + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + } + + _subtype_map = { + 'kind': {'AbstractiveSummarization': 'AbstractiveSummarizationLROTask', 'CustomEntityRecognition': 'CustomEntitiesLROTask', 'CustomMultiLabelClassification': 'CustomMultiLabelClassificationLROTask', 'CustomSingleLabelClassification': 'CustomSingleLabelClassificationLROTask', 'EntityLinking': 'EntityLinkingLROTask', 'EntityRecognition': 'EntitiesLROTask', 'ExtractiveSummarization': 'ExtractiveSummarizationLROTask', 'Healthcare': 'HealthcareLROTask', 'KeyPhraseExtraction': 'KeyPhraseLROTask', 'PiiEntityRecognition': 'PiiLROTask', 'SentimentAnalysis': 'SentimentAnalysisLROTask'} + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = None # type: Optional[str] + + +class AbstractiveSummarizationLROTask(AnalyzeTextLROTask): + """An object representing the task definition for an Abstractive Summarization task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for the pre-build Abstractive Summarization task. + Required. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + 'parameters': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "AbstractiveSummarizationTaskParameters"}, + } + + def __init__( + self, + *, + parameters: "_models.AbstractiveSummarizationTaskParameters", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for the pre-build Abstractive Summarization task. + Required. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'AbstractiveSummarization' # type: str + self.parameters = parameters + + +class PreBuiltResult(_serialization.Model): + """PreBuiltResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + """ + super().__init__(**kwargs) + self.errors = errors + self.statistics = statistics + self.model_version = model_version + + +class AbstractiveSummarizationResultBase(_serialization.Model): + """An object representing the summarization results of each document. + + All required parameters must be populated in order to send to Azure. + + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResultBaseDocumentsItem] + """ + + _validation = { + 'documents': {'required': True}, + } + + _attribute_map = { + "documents": {"key": "documents", "type": "[AbstractiveSummarizationResultBaseDocumentsItem]"}, + } + + def __init__( + self, + *, + documents: List["_models.AbstractiveSummarizationResultBaseDocumentsItem"], + **kwargs + ): + """ + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResultBaseDocumentsItem] + """ + super().__init__(**kwargs) + self.documents = documents + + +class AbstractiveSummarizationResult(AbstractiveSummarizationResultBase, PreBuiltResult): + """An object representing the pre-build summarization results of each document. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResultBaseDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[AbstractiveSummarizationResultBaseDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.AbstractiveSummarizationResultBaseDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummarizationResultBaseDocumentsItem] + """ + super().__init__(documents=documents, errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.errors = errors + self.statistics = statistics + self.model_version = model_version + self.documents = documents + + +class DocumentDetectedLanguage(_serialization.Model): + """DocumentDetectedLanguage. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + """ + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + } + + def __init__( + self, + *, + detected_language: Optional["_models.DetectedLanguage"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + """ + super().__init__(**kwargs) + self.detected_language = detected_language + + +class DocumentResult(_serialization.Model): + """DocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + """ + super().__init__(**kwargs) + self.id = id + self.warnings = warnings + self.statistics = statistics + + +class AbstractiveSummaryDocumentResult(DocumentResult): + """An object representing the summarization result of a single document. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar summaries: A list of abstractive summaries. Required. + :vartype summaries: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummary] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'summaries': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "summaries": {"key": "summaries", "type": "[AbstractiveSummary]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + summaries: List["_models.AbstractiveSummary"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword summaries: A list of abstractive summaries. Required. + :paramtype summaries: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummary] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.summaries = summaries + + +class AbstractiveSummarizationResultBaseDocumentsItem(AbstractiveSummaryDocumentResult, DocumentDetectedLanguage): + """AbstractiveSummarizationResultBaseDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar summaries: A list of abstractive summaries. Required. + :vartype summaries: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummary] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'summaries': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "summaries": {"key": "summaries", "type": "[AbstractiveSummary]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + summaries: List["_models.AbstractiveSummary"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword summaries: A list of abstractive summaries. Required. + :paramtype summaries: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.AbstractiveSummary] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, summaries=summaries, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.summaries = summaries + + +class TaskParameters(_serialization.Model): + """Base parameters object for a text analysis task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + """ + super().__init__(**kwargs) + self.logging_opt_out = logging_opt_out + + +class PreBuiltTaskParameters(TaskParameters): + """Parameters object for a text analysis task using pre-built models. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + """ + super().__init__(logging_opt_out=logging_opt_out, **kwargs) + self.model_version = model_version + + +class AbstractiveSummarizationTaskParametersBase(_serialization.Model): + """Supported parameters for an Abstractive Summarization task. + + :ivar sentence_count: It controls the approximate number of sentences in the output summaries. + :vartype sentence_count: int + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + :ivar phrase_controls: Control the phrases to be used in the summary. + :vartype phrase_controls: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControl] + """ + + _attribute_map = { + "sentence_count": {"key": "sentenceCount", "type": "int"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + "phrase_controls": {"key": "phraseControls", "type": "[PhraseControl]"}, + } + + def __init__( + self, + *, + sentence_count: Optional[int] = None, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + phrase_controls: Optional[List["_models.PhraseControl"]] = None, + **kwargs + ): + """ + :keyword sentence_count: It controls the approximate number of sentences in the output + summaries. + :paramtype sentence_count: int + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + :keyword phrase_controls: Control the phrases to be used in the summary. + :paramtype phrase_controls: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControl] + """ + super().__init__(**kwargs) + self.sentence_count = sentence_count + self.string_index_type = string_index_type + self.phrase_controls = phrase_controls + + +class AbstractiveSummarizationTaskParameters(AbstractiveSummarizationTaskParametersBase, PreBuiltTaskParameters): + """Supported parameters for the pre-build Abstractive Summarization task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar sentence_count: It controls the approximate number of sentences in the output summaries. + :vartype sentence_count: int + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + :ivar phrase_controls: Control the phrases to be used in the summary. + :vartype phrase_controls: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControl] + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "sentence_count": {"key": "sentenceCount", "type": "int"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + "phrase_controls": {"key": "phraseControls", "type": "[PhraseControl]"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + sentence_count: Optional[int] = None, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + phrase_controls: Optional[List["_models.PhraseControl"]] = None, + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword sentence_count: It controls the approximate number of sentences in the output + summaries. + :paramtype sentence_count: int + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + :keyword phrase_controls: Control the phrases to be used in the summary. + :paramtype phrase_controls: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControl] + """ + super().__init__(sentence_count=sentence_count, string_index_type=string_index_type, phrase_controls=phrase_controls, logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.logging_opt_out = logging_opt_out + self.model_version = model_version + self.sentence_count = sentence_count + self.string_index_type = string_index_type + self.phrase_controls = phrase_controls + + +class AbstractiveSummary(_serialization.Model): + """An object representing a single summary with context for given document. + + All required parameters must be populated in order to send to Azure. + + :ivar text: The text of the summary. Required. + :vartype text: str + :ivar contexts: The context list of the summary. + :vartype contexts: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SummaryContext] + """ + + _validation = { + 'text': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "contexts": {"key": "contexts", "type": "[SummaryContext]"}, + } + + def __init__( + self, + *, + text: str, + contexts: Optional[List["_models.SummaryContext"]] = None, + **kwargs + ): + """ + :keyword text: The text of the summary. Required. + :paramtype text: str + :keyword contexts: The context list of the summary. + :paramtype contexts: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SummaryContext] + """ + super().__init__(**kwargs) + self.text = text + self.contexts = contexts + + +class QuantityResolution(_serialization.Model): + """Represents resolutions for quantities. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + } + + def __init__( + self, + *, + value: float, + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + """ + super().__init__(**kwargs) + self.value = value + + +class BaseResolution(_serialization.Model): + """The abstract base class for entity resolutions. + + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + AgeResolution, AreaResolution, BooleanResolution, CurrencyResolution, DateTimeResolution, + InformationResolution, LengthResolution, NumberResolution, NumericRangeResolution, + OrdinalResolution, SpeedResolution, TemperatureResolution, TemporalSpanResolution, + VolumeResolution, WeightResolution + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + """ + + _validation = { + 'resolution_kind': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + } + + _subtype_map = { + 'resolution_kind': {'AgeResolution': 'AgeResolution', 'AreaResolution': 'AreaResolution', 'BooleanResolution': 'BooleanResolution', 'CurrencyResolution': 'CurrencyResolution', 'DateTimeResolution': 'DateTimeResolution', 'InformationResolution': 'InformationResolution', 'LengthResolution': 'LengthResolution', 'NumberResolution': 'NumberResolution', 'NumericRangeResolution': 'NumericRangeResolution', 'OrdinalResolution': 'OrdinalResolution', 'SpeedResolution': 'SpeedResolution', 'TemperatureResolution': 'TemperatureResolution', 'TemporalSpanResolution': 'TemporalSpanResolution', 'VolumeResolution': 'VolumeResolution', 'WeightResolution': 'WeightResolution'} + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.resolution_kind = None # type: Optional[str] + + +class AgeResolution(BaseResolution, QuantityResolution): + """Represents the Age entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The Age Unit of measurement. Required. Known values are: "Unspecified", "Year", + "Month", "Week", and "Day". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AgeUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.AgeUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The Age Unit of measurement. Required. Known values are: "Unspecified", "Year", + "Month", "Week", and "Day". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AgeUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'AgeResolution' # type: str + self.unit = unit + + +class AnalyzeTextTask(_serialization.Model): + """AnalyzeTextTask. + + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + AnalyzeTextDynamicClassificationInput, AnalyzeTextEntityLinkingInput, + AnalyzeTextEntityRecognitionInput, AnalyzeTextKeyPhraseExtractionInput, + AnalyzeTextLanguageDetectionInput, AnalyzeTextPiiEntitiesRecognitionInput, + AnalyzeTextSentimentAnalysisInput + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + } + + _subtype_map = { + 'kind': {'DynamicClassification': 'AnalyzeTextDynamicClassificationInput', 'EntityLinking': 'AnalyzeTextEntityLinkingInput', 'EntityRecognition': 'AnalyzeTextEntityRecognitionInput', 'KeyPhraseExtraction': 'AnalyzeTextKeyPhraseExtractionInput', 'LanguageDetection': 'AnalyzeTextLanguageDetectionInput', 'PiiEntityRecognition': 'AnalyzeTextPiiEntitiesRecognitionInput', 'SentimentAnalysis': 'AnalyzeTextSentimentAnalysisInput'} + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.kind = None # type: Optional[str] + + +class AnalyzeTextDynamicClassificationInput(AnalyzeTextTask): + """AnalyzeTextDynamicClassificationInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for a Zero Shot Classification task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "DynamicClassificationTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.DynamicClassificationTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for a Zero Shot Classification task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'DynamicClassification' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextEntityLinkingInput(AnalyzeTextTask): + """AnalyzeTextEntityLinkingInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for an Entity Linking task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "EntityLinkingTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.EntityLinkingTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for an Entity Linking task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'EntityLinking' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextEntityRecognitionInput(AnalyzeTextTask): + """AnalyzeTextEntityRecognitionInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for an Entity Recognition task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "EntitiesTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.EntitiesTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for an Entity Recognition task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'EntityRecognition' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextJobsInput(_serialization.Model): + """AnalyzeTextJobsInput. + + All required parameters must be populated in order to send to Azure. + + :ivar display_name: Optional display name for the analysis job. + :vartype display_name: str + :ivar default_language: Default language to use for records requesting automatic language + detection. + :vartype default_language: str + :ivar analysis_input: Required. + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar tasks: The set of tasks to execute on the input documents. Required. + :vartype tasks: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTask] + """ + + _validation = { + 'analysis_input': {'required': True}, + 'tasks': {'required': True}, + } + + _attribute_map = { + "display_name": {"key": "displayName", "type": "str"}, + "default_language": {"key": "defaultLanguage", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "tasks": {"key": "tasks", "type": "[AnalyzeTextLROTask]"}, + } + + def __init__( + self, + *, + analysis_input: "_models.MultiLanguageAnalysisInput", + tasks: List["_models.AnalyzeTextLROTask"], + display_name: Optional[str] = None, + default_language: Optional[str] = None, + **kwargs + ): + """ + :keyword display_name: Optional display name for the analysis job. + :paramtype display_name: str + :keyword default_language: Default language to use for records requesting automatic language + detection. + :paramtype default_language: str + :keyword analysis_input: Required. + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword tasks: The set of tasks to execute on the input documents. Required. + :paramtype tasks: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTask] + """ + super().__init__(**kwargs) + self.display_name = display_name + self.default_language = default_language + self.analysis_input = analysis_input + self.tasks = tasks + + +class AnalyzeTextJobStatistics(_serialization.Model): + """AnalyzeTextJobStatistics. + + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + """ + + _attribute_map = { + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + } + + def __init__( + self, + *, + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + """ + super().__init__(**kwargs) + self.statistics = statistics + + +class TasksState(_serialization.Model): + """TasksState. + + All required parameters must be populated in order to send to Azure. + + :ivar tasks: Required. + :vartype tasks: ~azure.ai.textanalytics.v2022_10_01_preview.models.TasksStateTasks + """ + + _validation = { + 'tasks': {'required': True}, + } + + _attribute_map = { + "tasks": {"key": "tasks", "type": "TasksStateTasks"}, + } + + def __init__( + self, + *, + tasks: "_models.TasksStateTasks", + **kwargs + ): + """ + :keyword tasks: Required. + :paramtype tasks: ~azure.ai.textanalytics.v2022_10_01_preview.models.TasksStateTasks + """ + super().__init__(**kwargs) + self.tasks = tasks + + +class JobState(_serialization.Model): + """JobState. + + All required parameters must be populated in order to send to Azure. + + :ivar display_name: + :vartype display_name: str + :ivar created_date_time: Required. + :vartype created_date_time: ~datetime.datetime + :ivar expiration_date_time: + :vartype expiration_date_time: ~datetime.datetime + :ivar job_id: Required. + :vartype job_id: str + :ivar last_update_date_time: Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar errors: + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :ivar next_link: + :vartype next_link: str + """ + + _validation = { + 'created_date_time': {'required': True}, + 'job_id': {'required': True}, + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + } + + _attribute_map = { + "display_name": {"key": "displayName", "type": "str"}, + "created_date_time": {"key": "createdDateTime", "type": "iso-8601"}, + "expiration_date_time": {"key": "expirationDateTime", "type": "iso-8601"}, + "job_id": {"key": "jobId", "type": "str"}, + "last_update_date_time": {"key": "lastUpdatedDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "errors": {"key": "errors", "type": "[Error]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__( + self, + *, + created_date_time: datetime.datetime, + job_id: str, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + display_name: Optional[str] = None, + expiration_date_time: Optional[datetime.datetime] = None, + errors: Optional[List["_models.Error"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword display_name: + :paramtype display_name: str + :keyword created_date_time: Required. + :paramtype created_date_time: ~datetime.datetime + :keyword expiration_date_time: + :paramtype expiration_date_time: ~datetime.datetime + :keyword job_id: Required. + :paramtype job_id: str + :keyword last_update_date_time: Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword errors: + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :keyword next_link: + :paramtype next_link: str + """ + super().__init__(**kwargs) + self.display_name = display_name + self.created_date_time = created_date_time + self.expiration_date_time = expiration_date_time + self.job_id = job_id + self.last_update_date_time = last_update_date_time + self.status = status + self.errors = errors + self.next_link = next_link + + +class AnalyzeTextJobState(JobState, TasksState, AnalyzeTextJobStatistics): + """AnalyzeTextJobState. + + All required parameters must be populated in order to send to Azure. + + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar tasks: Required. + :vartype tasks: ~azure.ai.textanalytics.v2022_10_01_preview.models.TasksStateTasks + :ivar display_name: + :vartype display_name: str + :ivar created_date_time: Required. + :vartype created_date_time: ~datetime.datetime + :ivar expiration_date_time: + :vartype expiration_date_time: ~datetime.datetime + :ivar job_id: Required. + :vartype job_id: str + :ivar last_update_date_time: Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar errors: + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :ivar next_link: + :vartype next_link: str + """ + + _validation = { + 'tasks': {'required': True}, + 'created_date_time': {'required': True}, + 'job_id': {'required': True}, + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + } + + _attribute_map = { + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "tasks": {"key": "tasks", "type": "TasksStateTasks"}, + "display_name": {"key": "displayName", "type": "str"}, + "created_date_time": {"key": "createdDateTime", "type": "iso-8601"}, + "expiration_date_time": {"key": "expirationDateTime", "type": "iso-8601"}, + "job_id": {"key": "jobId", "type": "str"}, + "last_update_date_time": {"key": "lastUpdatedDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "errors": {"key": "errors", "type": "[Error]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__( + self, + *, + tasks: "_models.TasksStateTasks", + created_date_time: datetime.datetime, + job_id: str, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + statistics: Optional["_models.RequestStatistics"] = None, + display_name: Optional[str] = None, + expiration_date_time: Optional[datetime.datetime] = None, + errors: Optional[List["_models.Error"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword tasks: Required. + :paramtype tasks: ~azure.ai.textanalytics.v2022_10_01_preview.models.TasksStateTasks + :keyword display_name: + :paramtype display_name: str + :keyword created_date_time: Required. + :paramtype created_date_time: ~datetime.datetime + :keyword expiration_date_time: + :paramtype expiration_date_time: ~datetime.datetime + :keyword job_id: Required. + :paramtype job_id: str + :keyword last_update_date_time: Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword errors: + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :keyword next_link: + :paramtype next_link: str + """ + super().__init__(display_name=display_name, created_date_time=created_date_time, expiration_date_time=expiration_date_time, job_id=job_id, last_update_date_time=last_update_date_time, status=status, errors=errors, next_link=next_link, tasks=tasks, statistics=statistics, **kwargs) + self.statistics = statistics + self.tasks = tasks + self.display_name = display_name + self.created_date_time = created_date_time + self.expiration_date_time = expiration_date_time + self.job_id = job_id + self.last_update_date_time = last_update_date_time + self.status = status + self.errors = errors + self.next_link = next_link + + +class AnalyzeTextKeyPhraseExtractionInput(AnalyzeTextTask): + """AnalyzeTextKeyPhraseExtractionInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for a Key Phrase Extraction task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "KeyPhraseTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.KeyPhraseTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for a Key Phrase Extraction task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'KeyPhraseExtraction' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextLanguageDetectionInput(AnalyzeTextTask): + """AnalyzeTextLanguageDetectionInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionAnalysisInput + :ivar parameters: Supported parameters for a Language Detection task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "LanguageDetectionAnalysisInput"}, + "parameters": {"key": "parameters", "type": "LanguageDetectionTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.LanguageDetectionAnalysisInput"] = None, + parameters: Optional["_models.LanguageDetectionTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionAnalysisInput + :keyword parameters: Supported parameters for a Language Detection task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'LanguageDetection' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextPiiEntitiesRecognitionInput(AnalyzeTextTask): + """AnalyzeTextPiiEntitiesRecognitionInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for a PII Entities Recognition task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "PiiTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.PiiTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for a PII Entities Recognition task. + :paramtype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'PiiEntityRecognition' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextSentimentAnalysisInput(AnalyzeTextTask): + """AnalyzeTextSentimentAnalysisInput. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis tasks. Required. Known values are: + "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "LanguageDetection", "EntityLinking", and "DynamicClassification". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskKind + :ivar analysis_input: + :vartype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :ivar parameters: Supported parameters for a Sentiment Analysis task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentAnalysisTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "analysis_input": {"key": "analysisInput", "type": "MultiLanguageAnalysisInput"}, + "parameters": {"key": "parameters", "type": "SentimentAnalysisTaskParameters"}, + } + + def __init__( + self, + *, + analysis_input: Optional["_models.MultiLanguageAnalysisInput"] = None, + parameters: Optional["_models.SentimentAnalysisTaskParameters"] = None, + **kwargs + ): + """ + :keyword analysis_input: + :paramtype analysis_input: + ~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageAnalysisInput + :keyword parameters: Supported parameters for a Sentiment Analysis task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentAnalysisTaskParameters + """ + super().__init__(**kwargs) + self.kind = 'SentimentAnalysis' # type: str + self.analysis_input = analysis_input + self.parameters = parameters + + +class AnalyzeTextTaskResult(_serialization.Model): + """AnalyzeTextTaskResult. + + You probably want to use the sub-classes and not this class directly. Known sub-classes are: + DynamicClassificationTaskResult, EntityLinkingTaskResult, EntitiesTaskResult, + KeyPhraseTaskResult, LanguageDetectionTaskResult, PiiTaskResult, SentimentTaskResult + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + } + + _subtype_map = { + 'kind': {'DynamicClassificationResults': 'DynamicClassificationTaskResult', 'EntityLinkingResults': 'EntityLinkingTaskResult', 'EntityRecognitionResults': 'EntitiesTaskResult', 'KeyPhraseExtractionResults': 'KeyPhraseTaskResult', 'LanguageDetectionResults': 'LanguageDetectionTaskResult', 'PiiEntityRecognitionResults': 'PiiTaskResult', 'SentimentAnalysisResults': 'SentimentTaskResult'} + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.kind = None # type: Optional[str] + + +class AreaResolution(BaseResolution, QuantityResolution): + """Represents the area entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The area Unit of measurement. Required. Known values are: "Unspecified", + "SquareKilometer", "SquareHectometer", "SquareDecameter", "SquareDecimeter", "SquareMeter", + "SquareCentimeter", "SquareMillimeter", "SquareInch", "SquareFoot", "SquareMile", "SquareYard", + and "Acre". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AreaUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.AreaUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The area Unit of measurement. Required. Known values are: "Unspecified", + "SquareKilometer", "SquareHectometer", "SquareDecameter", "SquareDecimeter", "SquareMeter", + "SquareCentimeter", "SquareMillimeter", "SquareInch", "SquareFoot", "SquareMile", "SquareYard", + and "Acre". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AreaUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'AreaResolution' # type: str + self.unit = unit + + +class BooleanResolution(BaseResolution): + """A resolution for boolean expressions. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar value: Required. + :vartype value: bool + """ + + _validation = { + 'resolution_kind': {'required': True}, + 'value': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "value": {"key": "value", "type": "bool"}, + } + + def __init__( + self, + *, + value: bool, + **kwargs + ): + """ + :keyword value: Required. + :paramtype value: bool + """ + super().__init__(**kwargs) + self.resolution_kind = 'BooleanResolution' # type: str + self.value = value + + +class ClassificationDocumentResult(DocumentResult): + """ClassificationDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar class_property: Required. + :vartype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'class_property': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "class_property": {"key": "class", "type": "[ClassificationResult]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + class_property: List["_models.ClassificationResult"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword class_property: Required. + :paramtype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.class_property = class_property + + +class ClassificationResult(_serialization.Model): + """ClassificationResult. + + All required parameters must be populated in order to send to Azure. + + :ivar category: Classification type. Required. + :vartype category: str + :ivar confidence_score: Confidence score between 0 and 1 of the recognized class. Required. + :vartype confidence_score: float + """ + + _validation = { + 'category': {'required': True}, + 'confidence_score': {'required': True}, + } + + _attribute_map = { + "category": {"key": "category", "type": "str"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + } + + def __init__( + self, + *, + category: str, + confidence_score: float, + **kwargs + ): + """ + :keyword category: Classification type. Required. + :paramtype category: str + :keyword confidence_score: Confidence score between 0 and 1 of the recognized class. Required. + :paramtype confidence_score: float + """ + super().__init__(**kwargs) + self.category = category + self.confidence_score = confidence_score + + +class CurrencyResolution(BaseResolution, QuantityResolution): + """Represents the currency entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar iso4217: The alphabetic code based on another ISO standard, ISO 3166, which lists the + codes for country names. The first two letters of the ISO 4217 three-letter code are the same + as the code for the country name, and, where possible, the third letter corresponds to the + first letter of the currency name. + :vartype iso4217: str + :ivar unit: The unit of the amount captured in the extracted entity. Required. + :vartype unit: str + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "iso4217": {"key": "ISO4217", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: str, + iso4217: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword iso4217: The alphabetic code based on another ISO standard, ISO 3166, which lists the + codes for country names. The first two letters of the ISO 4217 three-letter code are the same + as the code for the country name, and, where possible, the third letter corresponds to the + first letter of the currency name. + :paramtype iso4217: str + :keyword unit: The unit of the amount captured in the extracted entity. Required. + :paramtype unit: str + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'CurrencyResolution' # type: str + self.iso4217 = iso4217 + self.unit = unit + + +class CustomEntitiesLROTask(AnalyzeTextLROTask): + """Use custom models to ease the process of information extraction from unstructured documents like contracts or financial documents. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Custom Entities task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "CustomEntitiesTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.CustomEntitiesTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Custom Entities task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'CustomEntityRecognition' # type: str + self.parameters = parameters + + +class CustomResult(_serialization.Model): + """CustomResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + """ + + _validation = { + 'errors': {'required': True}, + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[DocumentError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + } + + def __init__( + self, + *, + errors: List["_models.DocumentError"], + project_name: str, + deployment_name: str, + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + """ + super().__init__(**kwargs) + self.errors = errors + self.statistics = statistics + self.project_name = project_name + self.deployment_name = deployment_name + + +class CustomEntitiesResult(CustomResult): + """CustomEntitiesResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[DocumentError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + "documents": {"key": "documents", "type": "[CustomEntitiesResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.DocumentError"], + project_name: str, + deployment_name: str, + documents: List["_models.CustomEntitiesResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, project_name=project_name, deployment_name=deployment_name, **kwargs) + self.documents = documents + + +class EntitiesDocumentResult(DocumentResult): + """EntitiesDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Recognized entities in the document. Required. + :vartype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[EntityWithResolution]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.EntityWithResolution"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Recognized entities in the document. Required. + :paramtype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.entities = entities + + +class CustomEntitiesResultDocumentsItem(EntitiesDocumentResult, DocumentDetectedLanguage): + """CustomEntitiesResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Recognized entities in the document. Required. + :vartype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[EntityWithResolution]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.EntityWithResolution"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Recognized entities in the document. Required. + :paramtype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, entities=entities, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.entities = entities + + +class CustomTaskParameters(TaskParameters): + """Parameters object for a text analysis task using custom models. + + All required parameters must be populated in order to send to Azure. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + """ + + _validation = { + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + } + + def __init__( + self, + *, + project_name: str, + deployment_name: str, + logging_opt_out: bool = False, + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + """ + super().__init__(logging_opt_out=logging_opt_out, **kwargs) + self.project_name = project_name + self.deployment_name = deployment_name + + +class CustomEntitiesTaskParameters(CustomTaskParameters): + """Supported parameters for a Custom Entities task. + + All required parameters must be populated in order to send to Azure. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _validation = { + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + project_name: str, + deployment_name: str, + logging_opt_out: bool = False, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, project_name=project_name, deployment_name=deployment_name, **kwargs) + self.string_index_type = string_index_type + + +class CustomEntityRecognitionLROResult(AnalyzeTextLROResult): + """CustomEntityRecognitionLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "CustomEntitiesResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.CustomEntitiesResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomEntitiesResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'CustomEntityRecognitionLROResults' # type: str + self.results = results + + +class CustomLabelClassificationResult(CustomResult): + """CustomLabelClassificationResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[DocumentError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + "documents": {"key": "documents", "type": "[CustomLabelClassificationResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.DocumentError"], + project_name: str, + deployment_name: str, + documents: List["_models.CustomLabelClassificationResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, project_name=project_name, deployment_name=deployment_name, **kwargs) + self.documents = documents + + +class CustomLabelClassificationResultDocumentsItem(ClassificationDocumentResult, DocumentDetectedLanguage): + """CustomLabelClassificationResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar class_property: Required. + :vartype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'class_property': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "class_property": {"key": "class", "type": "[ClassificationResult]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + class_property: List["_models.ClassificationResult"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword class_property: Required. + :paramtype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, class_property=class_property, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.class_property = class_property + + +class CustomMultiLabelClassificationLROResult(AnalyzeTextLROResult): + """CustomMultiLabelClassificationLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "CustomLabelClassificationResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.CustomLabelClassificationResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'CustomMultiLabelClassificationLROResults' # type: str + self.results = results + + +class CustomMultiLabelClassificationLROTask(AnalyzeTextLROTask): + """Use custom models to classify text into multi label taxonomy. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Custom Multi Classification task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomMultiLabelClassificationTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "CustomMultiLabelClassificationTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.CustomMultiLabelClassificationTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Custom Multi Classification task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomMultiLabelClassificationTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'CustomMultiLabelClassification' # type: str + self.parameters = parameters + + +class CustomMultiLabelClassificationTaskParameters(CustomTaskParameters): + """Supported parameters for a Custom Multi Classification task. + + All required parameters must be populated in order to send to Azure. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + """ + + _validation = { + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + } + + def __init__( + self, + *, + project_name: str, + deployment_name: str, + logging_opt_out: bool = False, + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + """ + super().__init__(logging_opt_out=logging_opt_out, project_name=project_name, deployment_name=deployment_name, **kwargs) + + +class CustomSingleLabelClassificationLROResult(AnalyzeTextLROResult): + """CustomSingleLabelClassificationLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "CustomLabelClassificationResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.CustomLabelClassificationResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomLabelClassificationResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'CustomSingleLabelClassificationLROResults' # type: str + self.results = results + + +class CustomSingleLabelClassificationLROTask(AnalyzeTextLROTask): + """Use custom models to classify text into single label taxonomy. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Custom Single Classification task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomSingleLabelClassificationTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "CustomSingleLabelClassificationTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.CustomSingleLabelClassificationTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Custom Single Classification task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.CustomSingleLabelClassificationTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'CustomSingleLabelClassification' # type: str + self.parameters = parameters + + +class CustomSingleLabelClassificationTaskParameters(CustomTaskParameters): + """Supported parameters for a Custom Single Classification task. + + All required parameters must be populated in order to send to Azure. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar project_name: This field indicates the project name for the model. Required. + :vartype project_name: str + :ivar deployment_name: This field indicates the deployment name for the model. Required. + :vartype deployment_name: str + """ + + _validation = { + 'project_name': {'required': True}, + 'deployment_name': {'required': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "project_name": {"key": "projectName", "type": "str"}, + "deployment_name": {"key": "deploymentName", "type": "str"}, + } + + def __init__( + self, + *, + project_name: str, + deployment_name: str, + logging_opt_out: bool = False, + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword project_name: This field indicates the project name for the model. Required. + :paramtype project_name: str + :keyword deployment_name: This field indicates the deployment name for the model. Required. + :paramtype deployment_name: str + """ + super().__init__(logging_opt_out=logging_opt_out, project_name=project_name, deployment_name=deployment_name, **kwargs) + + +class DateTimeResolution(BaseResolution): + """A resolution for datetime entity instances. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar timex: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + Required. + :vartype timex: str + :ivar date_time_sub_kind: The DateTime SubKind. Required. Known values are: "Time", "Date", + "DateTime", "Duration", and "Set". + :vartype date_time_sub_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DateTimeSubKind + :ivar value: The actual time that the extracted text denote. Required. + :vartype value: str + :ivar modifier: An optional modifier of a date/time instance. Known values are: "AfterApprox", + "Before", "BeforeStart", "Approx", "ReferenceUndefined", "SinceEnd", "AfterMid", "Start", + "After", "BeforeEnd", "Until", "End", "Less", "Since", "AfterStart", "BeforeApprox", "Mid", and + "More". + :vartype modifier: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemporalModifier + """ + + _validation = { + 'resolution_kind': {'required': True}, + 'timex': {'required': True}, + 'date_time_sub_kind': {'required': True}, + 'value': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "timex": {"key": "timex", "type": "str"}, + "date_time_sub_kind": {"key": "dateTimeSubKind", "type": "str"}, + "value": {"key": "value", "type": "str"}, + "modifier": {"key": "modifier", "type": "str"}, + } + + def __init__( + self, + *, + timex: str, + date_time_sub_kind: Union[str, "_models.DateTimeSubKind"], + value: str, + modifier: Optional[Union[str, "_models.TemporalModifier"]] = None, + **kwargs + ): + """ + :keyword timex: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + Required. + :paramtype timex: str + :keyword date_time_sub_kind: The DateTime SubKind. Required. Known values are: "Time", "Date", + "DateTime", "Duration", and "Set". + :paramtype date_time_sub_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DateTimeSubKind + :keyword value: The actual time that the extracted text denote. Required. + :paramtype value: str + :keyword modifier: An optional modifier of a date/time instance. Known values are: + "AfterApprox", "Before", "BeforeStart", "Approx", "ReferenceUndefined", "SinceEnd", "AfterMid", + "Start", "After", "BeforeEnd", "Until", "End", "Less", "Since", "AfterStart", "BeforeApprox", + "Mid", and "More". + :paramtype modifier: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemporalModifier + """ + super().__init__(**kwargs) + self.resolution_kind = 'DateTimeResolution' # type: str + self.timex = timex + self.date_time_sub_kind = date_time_sub_kind + self.value = value + self.modifier = modifier + + +class DetectedLanguage(_serialization.Model): + """DetectedLanguage. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Long name of a detected language (e.g. English, French). Required. + :vartype name: str + :ivar iso6391_name: A two letter representation of the detected language according to the ISO + 639-1 standard (e.g. en, fr). Required. + :vartype iso6391_name: str + :ivar confidence_score: A confidence score between 0 and 1. Scores close to 1 indicate 100% + certainty that the identified language is true. Required. + :vartype confidence_score: float + :ivar script: Identifies the script of the input document. "Latin" + :vartype script: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.ScriptKind + """ + + _validation = { + 'name': {'required': True}, + 'iso6391_name': {'required': True}, + 'confidence_score': {'required': True}, + } + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "iso6391_name": {"key": "iso6391Name", "type": "str"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + "script": {"key": "script", "type": "str"}, + } + + def __init__( + self, + *, + name: str, + iso6391_name: str, + confidence_score: float, + script: Optional[Union[str, "_models.ScriptKind"]] = None, + **kwargs + ): + """ + :keyword name: Long name of a detected language (e.g. English, French). Required. + :paramtype name: str + :keyword iso6391_name: A two letter representation of the detected language according to the + ISO 639-1 standard (e.g. en, fr). Required. + :paramtype iso6391_name: str + :keyword confidence_score: A confidence score between 0 and 1. Scores close to 1 indicate 100% + certainty that the identified language is true. Required. + :paramtype confidence_score: float + :keyword script: Identifies the script of the input document. "Latin" + :paramtype script: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.ScriptKind + """ + super().__init__(**kwargs) + self.name = name + self.iso6391_name = iso6391_name + self.confidence_score = confidence_score + self.script = script + + +class DocumentError(_serialization.Model): + """DocumentError. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Document Id. Required. + :vartype id: str + :ivar error: Document Error. Required. + :vartype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + + _validation = { + 'id': {'required': True}, + 'error': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "error": {"key": "error", "type": "Error"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + error: "_models.Error", + **kwargs + ): + """ + :keyword id: Document Id. Required. + :paramtype id: str + :keyword error: Document Error. Required. + :paramtype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + super().__init__(**kwargs) + self.id = id + self.error = error + + +class RequestStatistics(_serialization.Model): + """if showStats=true was specified in the request this field will contain information about the request payload. + + All required parameters must be populated in order to send to Azure. + + :ivar additional_properties: Unmatched properties from the message are deserialized to this + collection. + :vartype additional_properties: dict[str, any] + :ivar documents_count: Number of documents submitted in the request. Required. + :vartype documents_count: int + :ivar valid_documents_count: Number of valid documents. This excludes empty, over-size limit or + non-supported languages documents. Required. + :vartype valid_documents_count: int + :ivar erroneous_documents_count: Number of invalid documents. This includes empty, over-size + limit or non-supported languages documents. Required. + :vartype erroneous_documents_count: int + :ivar transactions_count: Number of transactions for the request. Required. + :vartype transactions_count: int + """ + + _validation = { + 'documents_count': {'required': True}, + 'valid_documents_count': {'required': True}, + 'erroneous_documents_count': {'required': True}, + 'transactions_count': {'required': True}, + } + + _attribute_map = { + "additional_properties": {"key": "", "type": "{object}"}, + "documents_count": {"key": "documentsCount", "type": "int"}, + "valid_documents_count": {"key": "validDocumentsCount", "type": "int"}, + "erroneous_documents_count": {"key": "erroneousDocumentsCount", "type": "int"}, + "transactions_count": {"key": "transactionsCount", "type": "int"}, + } + + def __init__( + self, + *, + documents_count: int, + valid_documents_count: int, + erroneous_documents_count: int, + transactions_count: int, + additional_properties: Optional[Dict[str, Any]] = None, + **kwargs + ): + """ + :keyword additional_properties: Unmatched properties from the message are deserialized to this + collection. + :paramtype additional_properties: dict[str, any] + :keyword documents_count: Number of documents submitted in the request. Required. + :paramtype documents_count: int + :keyword valid_documents_count: Number of valid documents. This excludes empty, over-size limit + or non-supported languages documents. Required. + :paramtype valid_documents_count: int + :keyword erroneous_documents_count: Number of invalid documents. This includes empty, over-size + limit or non-supported languages documents. Required. + :paramtype erroneous_documents_count: int + :keyword transactions_count: Number of transactions for the request. Required. + :paramtype transactions_count: int + """ + super().__init__(**kwargs) + self.additional_properties = additional_properties + self.documents_count = documents_count + self.valid_documents_count = valid_documents_count + self.erroneous_documents_count = erroneous_documents_count + self.transactions_count = transactions_count + + +class DocumentRequestStatistics(RequestStatistics): + """if showStats=true was specified in the request this field will contain information about the document request payload. + + All required parameters must be populated in order to send to Azure. + + :ivar additional_properties: Unmatched properties from the message are deserialized to this + collection. + :vartype additional_properties: dict[str, any] + :ivar documents_count: Number of documents submitted in the request. Required. + :vartype documents_count: int + :ivar valid_documents_count: Number of valid documents. This excludes empty, over-size limit or + non-supported languages documents. Required. + :vartype valid_documents_count: int + :ivar erroneous_documents_count: Number of invalid documents. This includes empty, over-size + limit or non-supported languages documents. Required. + :vartype erroneous_documents_count: int + :ivar transactions_count: Number of transactions for the request. Required. + :vartype transactions_count: int + """ + + _validation = { + 'documents_count': {'required': True}, + 'valid_documents_count': {'required': True}, + 'erroneous_documents_count': {'required': True}, + 'transactions_count': {'required': True}, + } + + _attribute_map = { + "additional_properties": {"key": "", "type": "{object}"}, + "documents_count": {"key": "documentsCount", "type": "int"}, + "valid_documents_count": {"key": "validDocumentsCount", "type": "int"}, + "erroneous_documents_count": {"key": "erroneousDocumentsCount", "type": "int"}, + "transactions_count": {"key": "transactionsCount", "type": "int"}, + } + + def __init__( + self, + *, + documents_count: int, + valid_documents_count: int, + erroneous_documents_count: int, + transactions_count: int, + additional_properties: Optional[Dict[str, Any]] = None, + **kwargs + ): + """ + :keyword additional_properties: Unmatched properties from the message are deserialized to this + collection. + :paramtype additional_properties: dict[str, any] + :keyword documents_count: Number of documents submitted in the request. Required. + :paramtype documents_count: int + :keyword valid_documents_count: Number of valid documents. This excludes empty, over-size limit + or non-supported languages documents. Required. + :paramtype valid_documents_count: int + :keyword erroneous_documents_count: Number of invalid documents. This includes empty, over-size + limit or non-supported languages documents. Required. + :paramtype erroneous_documents_count: int + :keyword transactions_count: Number of transactions for the request. Required. + :paramtype transactions_count: int + """ + super().__init__(additional_properties=additional_properties, documents_count=documents_count, valid_documents_count=valid_documents_count, erroneous_documents_count=erroneous_documents_count, transactions_count=transactions_count, **kwargs) + + +class DocumentStatistics(_serialization.Model): + """if showStats=true was specified in the request this field will contain information about the document payload. + + All required parameters must be populated in order to send to Azure. + + :ivar characters_count: Number of text elements recognized in the document. Required. + :vartype characters_count: int + :ivar transactions_count: Number of transactions for the document. Required. + :vartype transactions_count: int + """ + + _validation = { + 'characters_count': {'required': True}, + 'transactions_count': {'required': True}, + } + + _attribute_map = { + "characters_count": {"key": "charactersCount", "type": "int"}, + "transactions_count": {"key": "transactionsCount", "type": "int"}, + } + + def __init__( + self, + *, + characters_count: int, + transactions_count: int, + **kwargs + ): + """ + :keyword characters_count: Number of text elements recognized in the document. Required. + :paramtype characters_count: int + :keyword transactions_count: Number of transactions for the document. Required. + :paramtype transactions_count: int + """ + super().__init__(**kwargs) + self.characters_count = characters_count + self.transactions_count = transactions_count + + +class DocumentWarning(_serialization.Model): + """DocumentWarning. + + All required parameters must be populated in order to send to Azure. + + :ivar code: Error code. Required. Known values are: "LongWordsInDocument" and + "DocumentTruncated". + :vartype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.WarningCodeValue + :ivar message: Warning message. Required. + :vartype message: str + :ivar target_ref: A JSON pointer reference indicating the target object. + :vartype target_ref: str + """ + + _validation = { + 'code': {'required': True}, + 'message': {'required': True}, + } + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "target_ref": {"key": "targetRef", "type": "str"}, + } + + def __init__( + self, + *, + code: Union[str, "_models.WarningCodeValue"], + message: str, + target_ref: Optional[str] = None, + **kwargs + ): + """ + :keyword code: Error code. Required. Known values are: "LongWordsInDocument" and + "DocumentTruncated". + :paramtype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.WarningCodeValue + :keyword message: Warning message. Required. + :paramtype message: str + :keyword target_ref: A JSON pointer reference indicating the target object. + :paramtype target_ref: str + """ + super().__init__(**kwargs) + self.code = code + self.message = message + self.target_ref = target_ref + + +class DynamicClassificationResult(PreBuiltResult): + """DynamicClassificationResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[DynamicClassificationResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.DynamicClassificationResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class DynamicClassificationResultDocumentsItem(ClassificationDocumentResult): + """DynamicClassificationResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar class_property: Required. + :vartype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'class_property': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "class_property": {"key": "class", "type": "[ClassificationResult]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + class_property: List["_models.ClassificationResult"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword class_property: Required. + :paramtype class_property: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationResult] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, class_property=class_property, **kwargs) + + +class DynamicClassificationTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a Zero Shot Classification task. + + All required parameters must be populated in order to send to Azure. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar classification_type: Specifies either one or multiple categories per document. Defaults + to multi classification which may return more than one class for each document. Known values + are: "Single" and "Multi". + :vartype classification_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationType + :ivar categories: a list of categories to which input is classified to. Required. + :vartype categories: list[str] + """ + + _validation = { + 'categories': {'required': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "classification_type": {"key": "classificationType", "type": "str"}, + "categories": {"key": "categories", "type": "[str]"}, + } + + def __init__( + self, + *, + categories: List[str], + logging_opt_out: bool = False, + model_version: str = "latest", + classification_type: Union[str, "_models.ClassificationType"] = "Multi", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword classification_type: Specifies either one or multiple categories per document. + Defaults to multi classification which may return more than one class for each document. Known + values are: "Single" and "Multi". + :paramtype classification_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ClassificationType + :keyword categories: a list of categories to which input is classified to. Required. + :paramtype categories: list[str] + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.classification_type = classification_type + self.categories = categories + + +class DynamicClassificationTaskResult(AnalyzeTextTaskResult): + """DynamicClassificationTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "DynamicClassificationResult"}, + } + + def __init__( + self, + *, + results: "_models.DynamicClassificationResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DynamicClassificationResult + """ + super().__init__(**kwargs) + self.kind = 'DynamicClassificationResults' # type: str + self.results = results + + +class EntitiesLROTask(AnalyzeTextLROTask): + """An object representing the task definition for an Entities Recognition task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for an Entity Recognition task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "EntitiesTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.EntitiesTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for an Entity Recognition task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'EntityRecognition' # type: str + self.parameters = parameters + + +class EntitiesResult(PreBuiltResult): + """EntitiesResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[EntitiesResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.EntitiesResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class EntitiesResultDocumentsItem(EntitiesDocumentResult, DocumentDetectedLanguage): + """EntitiesResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Recognized entities in the document. Required. + :vartype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[EntityWithResolution]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.EntityWithResolution"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Recognized entities in the document. Required. + :paramtype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityWithResolution] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, entities=entities, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.entities = entities + + +class EntitiesTaskParameters(PreBuiltTaskParameters): + """Supported parameters for an Entity Recognition task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.string_index_type = string_index_type + + +class EntitiesTaskResult(AnalyzeTextTaskResult): + """EntitiesTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "EntitiesResult"}, + } + + def __init__( + self, + *, + results: "_models.EntitiesResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResult + """ + super().__init__(**kwargs) + self.kind = 'EntityRecognitionResults' # type: str + self.results = results + + +class Entity(_serialization.Model): + """Entity. + + All required parameters must be populated in order to send to Azure. + + :ivar text: Entity text as appears in the request. Required. + :vartype text: str + :ivar category: Entity type. Required. + :vartype category: str + :ivar subcategory: (Optional) Entity sub type. + :vartype subcategory: str + :ivar offset: Start position for the entity text. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :vartype offset: int + :ivar length: Length for the entity text. Use of different 'stringIndexType' values can affect + the length returned. Required. + :vartype length: int + :ivar confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :vartype confidence_score: float + """ + + _validation = { + 'text': {'required': True}, + 'category': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + 'confidence_score': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "category": {"key": "category", "type": "str"}, + "subcategory": {"key": "subcategory", "type": "str"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + } + + def __init__( + self, + *, + text: str, + category: str, + offset: int, + length: int, + confidence_score: float, + subcategory: Optional[str] = None, + **kwargs + ): + """ + :keyword text: Entity text as appears in the request. Required. + :paramtype text: str + :keyword category: Entity type. Required. + :paramtype category: str + :keyword subcategory: (Optional) Entity sub type. + :paramtype subcategory: str + :keyword offset: Start position for the entity text. Use of different 'stringIndexType' values + can affect the offset returned. Required. + :paramtype offset: int + :keyword length: Length for the entity text. Use of different 'stringIndexType' values can + affect the length returned. Required. + :paramtype length: int + :keyword confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :paramtype confidence_score: float + """ + super().__init__(**kwargs) + self.text = text + self.category = category + self.subcategory = subcategory + self.offset = offset + self.length = length + self.confidence_score = confidence_score + + +class EntityLinkingLROResult(AnalyzeTextLROResult): + """EntityLinkingLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "EntityLinkingResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.EntityLinkingResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'EntityLinkingLROResults' # type: str + self.results = results + + +class EntityLinkingLROTask(AnalyzeTextLROTask): + """An object representing the task definition for an Entity Linking task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for an Entity Linking task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "EntityLinkingTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.EntityLinkingTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for an Entity Linking task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'EntityLinking' # type: str + self.parameters = parameters + + +class EntityLinkingResult(PreBuiltResult): + """EntityLinkingResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[EntityLinkingResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.EntityLinkingResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class LinkedEntitiesDocumentResult(DocumentResult): + """LinkedEntitiesDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Recognized well known entities in the document. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LinkedEntity] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[LinkedEntity]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.LinkedEntity"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Recognized well known entities in the document. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LinkedEntity] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.entities = entities + + +class EntityLinkingResultDocumentsItem(LinkedEntitiesDocumentResult, DocumentDetectedLanguage): + """EntityLinkingResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Recognized well known entities in the document. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LinkedEntity] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[LinkedEntity]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.LinkedEntity"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Recognized well known entities in the document. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LinkedEntity] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, entities=entities, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.entities = entities + + +class EntityLinkingTaskParameters(PreBuiltTaskParameters): + """Supported parameters for an Entity Linking task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.string_index_type = string_index_type + + +class EntityLinkingTaskResult(AnalyzeTextTaskResult): + """EntityLinkingTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "EntityLinkingResult"}, + } + + def __init__( + self, + *, + results: "_models.EntityLinkingResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntityLinkingResult + """ + super().__init__(**kwargs) + self.kind = 'EntityLinkingResults' # type: str + self.results = results + + +class EntityRecognitionLROResult(AnalyzeTextLROResult): + """EntityRecognitionLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "EntitiesResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.EntitiesResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.EntitiesResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'EntityRecognitionLROResults' # type: str + self.results = results + + +class EntityWithResolution(Entity): + """EntityWithResolution. + + All required parameters must be populated in order to send to Azure. + + :ivar text: Entity text as appears in the request. Required. + :vartype text: str + :ivar category: Entity type. Required. + :vartype category: str + :ivar subcategory: (Optional) Entity sub type. + :vartype subcategory: str + :ivar offset: Start position for the entity text. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :vartype offset: int + :ivar length: Length for the entity text. Use of different 'stringIndexType' values can affect + the length returned. Required. + :vartype length: int + :ivar confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :vartype confidence_score: float + :ivar resolutions: The collection of entity resolution objects. + :vartype resolutions: list[~azure.ai.textanalytics.v2022_10_01_preview.models.BaseResolution] + """ + + _validation = { + 'text': {'required': True}, + 'category': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + 'confidence_score': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "category": {"key": "category", "type": "str"}, + "subcategory": {"key": "subcategory", "type": "str"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + "resolutions": {"key": "resolutions", "type": "[BaseResolution]"}, + } + + def __init__( + self, + *, + text: str, + category: str, + offset: int, + length: int, + confidence_score: float, + subcategory: Optional[str] = None, + resolutions: Optional[List["_models.BaseResolution"]] = None, + **kwargs + ): + """ + :keyword text: Entity text as appears in the request. Required. + :paramtype text: str + :keyword category: Entity type. Required. + :paramtype category: str + :keyword subcategory: (Optional) Entity sub type. + :paramtype subcategory: str + :keyword offset: Start position for the entity text. Use of different 'stringIndexType' values + can affect the offset returned. Required. + :paramtype offset: int + :keyword length: Length for the entity text. Use of different 'stringIndexType' values can + affect the length returned. Required. + :paramtype length: int + :keyword confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :paramtype confidence_score: float + :keyword resolutions: The collection of entity resolution objects. + :paramtype resolutions: list[~azure.ai.textanalytics.v2022_10_01_preview.models.BaseResolution] + """ + super().__init__(text=text, category=category, subcategory=subcategory, offset=offset, length=length, confidence_score=confidence_score, **kwargs) + self.resolutions = resolutions + + +class Error(_serialization.Model): + """The error object. + + All required parameters must be populated in order to send to Azure. + + :ivar additional_properties: Unmatched properties from the message are deserialized to this + collection. + :vartype additional_properties: dict[str, any] + :ivar code: One of a server-defined set of error codes. Required. Known values are: + "InvalidRequest", "InvalidArgument", "Unauthorized", "Forbidden", "NotFound", + "ProjectNotFound", "OperationNotFound", "AzureCognitiveSearchNotFound", + "AzureCognitiveSearchIndexNotFound", "TooManyRequests", "AzureCognitiveSearchThrottling", + "AzureCognitiveSearchIndexLimitReached", "InternalServerError", "ServiceUnavailable", + "Timeout", "QuotaExceeded", "Conflict", and "Warning". + :vartype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.ErrorCode + :ivar message: A human-readable representation of the error. Required. + :vartype message: str + :ivar target: The target of the error. + :vartype target: str + :ivar details: An array of details about specific errors that led to this reported error. + :vartype details: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :ivar innererror: An object containing more specific information than the current object about + the error. + :vartype innererror: ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorModel + """ + + _validation = { + 'code': {'required': True}, + 'message': {'required': True}, + } + + _attribute_map = { + "additional_properties": {"key": "", "type": "{object}"}, + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "target": {"key": "target", "type": "str"}, + "details": {"key": "details", "type": "[Error]"}, + "innererror": {"key": "innererror", "type": "InnerErrorModel"}, + } + + def __init__( + self, + *, + code: Union[str, "_models.ErrorCode"], + message: str, + additional_properties: Optional[Dict[str, Any]] = None, + target: Optional[str] = None, + details: Optional[List["_models.Error"]] = None, + innererror: Optional["_models.InnerErrorModel"] = None, + **kwargs + ): + """ + :keyword additional_properties: Unmatched properties from the message are deserialized to this + collection. + :paramtype additional_properties: dict[str, any] + :keyword code: One of a server-defined set of error codes. Required. Known values are: + "InvalidRequest", "InvalidArgument", "Unauthorized", "Forbidden", "NotFound", + "ProjectNotFound", "OperationNotFound", "AzureCognitiveSearchNotFound", + "AzureCognitiveSearchIndexNotFound", "TooManyRequests", "AzureCognitiveSearchThrottling", + "AzureCognitiveSearchIndexLimitReached", "InternalServerError", "ServiceUnavailable", + "Timeout", "QuotaExceeded", "Conflict", and "Warning". + :paramtype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.ErrorCode + :keyword message: A human-readable representation of the error. Required. + :paramtype message: str + :keyword target: The target of the error. + :paramtype target: str + :keyword details: An array of details about specific errors that led to this reported error. + :paramtype details: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Error] + :keyword innererror: An object containing more specific information than the current object + about the error. + :paramtype innererror: ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorModel + """ + super().__init__(**kwargs) + self.additional_properties = additional_properties + self.code = code + self.message = message + self.target = target + self.details = details + self.innererror = innererror + + +class ErrorResponse(_serialization.Model): + """Error response. + + All required parameters must be populated in order to send to Azure. + + :ivar error: The error object. Required. + :vartype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + + _validation = { + 'error': {'required': True}, + } + + _attribute_map = { + "error": {"key": "error", "type": "Error"}, + } + + def __init__( + self, + *, + error: "_models.Error", + **kwargs + ): + """ + :keyword error: The error object. Required. + :paramtype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + super().__init__(**kwargs) + self.error = error + + +class ExtractedSummaryDocumentResult(DocumentResult): + """ExtractedSummaryDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar sentences: A ranked list of sentences representing the extracted summary. Required. + :vartype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractedSummarySentence] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'sentences': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "sentences": {"key": "sentences", "type": "[ExtractedSummarySentence]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + sentences: List["_models.ExtractedSummarySentence"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword sentences: A ranked list of sentences representing the extracted summary. Required. + :paramtype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractedSummarySentence] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.sentences = sentences + + +class ExtractedSummarySentence(_serialization.Model): + """ExtractedSummarySentence. + + All required parameters must be populated in order to send to Azure. + + :ivar text: The extracted sentence text. Required. + :vartype text: str + :ivar rank_score: A double value representing the relevance of the sentence within the summary. + Higher values indicate higher importance. Required. + :vartype rank_score: float + :ivar offset: The sentence offset from the start of the document, based on the value of the + parameter StringIndexType. Required. + :vartype offset: int + :ivar length: The length of the sentence. Required. + :vartype length: int + """ + + _validation = { + 'text': {'required': True}, + 'rank_score': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "rank_score": {"key": "rankScore", "type": "float"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + } + + def __init__( + self, + *, + text: str, + rank_score: float, + offset: int, + length: int, + **kwargs + ): + """ + :keyword text: The extracted sentence text. Required. + :paramtype text: str + :keyword rank_score: A double value representing the relevance of the sentence within the + summary. Higher values indicate higher importance. Required. + :paramtype rank_score: float + :keyword offset: The sentence offset from the start of the document, based on the value of the + parameter StringIndexType. Required. + :paramtype offset: int + :keyword length: The length of the sentence. Required. + :paramtype length: int + """ + super().__init__(**kwargs) + self.text = text + self.rank_score = rank_score + self.offset = offset + self.length = length + + +class ExtractiveSummarizationLROResult(AnalyzeTextLROResult): + """ExtractiveSummarizationLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "ExtractiveSummarizationResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.ExtractiveSummarizationResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'ExtractiveSummarizationLROResults' # type: str + self.results = results + + +class ExtractiveSummarizationLROTask(AnalyzeTextLROTask): + """An object representing the task definition for an Extractive Summarization task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for an Extractive Summarization task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "ExtractiveSummarizationTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.ExtractiveSummarizationTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for an Extractive Summarization task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'ExtractiveSummarization' # type: str + self.parameters = parameters + + +class ExtractiveSummarizationResult(PreBuiltResult): + """ExtractiveSummarizationResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[ExtractiveSummarizationResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.ExtractiveSummarizationResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class ExtractiveSummarizationResultDocumentsItem(ExtractedSummaryDocumentResult, DocumentDetectedLanguage): + """ExtractiveSummarizationResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar sentences: A ranked list of sentences representing the extracted summary. Required. + :vartype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractedSummarySentence] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'sentences': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "sentences": {"key": "sentences", "type": "[ExtractedSummarySentence]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + sentences: List["_models.ExtractedSummarySentence"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword sentences: A ranked list of sentences representing the extracted summary. Required. + :paramtype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractedSummarySentence] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, sentences=sentences, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.sentences = sentences + + +class ExtractiveSummarizationTaskParameters(PreBuiltTaskParameters): + """Supported parameters for an Extractive Summarization task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar sentence_count: + :vartype sentence_count: int + :ivar sort_by: The sorting criteria to use for the results of Extractive Summarization. Known + values are: "Offset" and "Rank". + :vartype sort_by: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationSortingCriteria + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "sentence_count": {"key": "sentenceCount", "type": "int"}, + "sort_by": {"key": "sortBy", "type": "str"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + sentence_count: int = 3, + sort_by: Union[str, "_models.ExtractiveSummarizationSortingCriteria"] = "Offset", + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword sentence_count: + :paramtype sentence_count: int + :keyword sort_by: The sorting criteria to use for the results of Extractive Summarization. + Known values are: "Offset" and "Rank". + :paramtype sort_by: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ExtractiveSummarizationSortingCriteria + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.sentence_count = sentence_count + self.sort_by = sort_by + self.string_index_type = string_index_type + + +class HealthcareAssertion(_serialization.Model): + """HealthcareAssertion. + + :ivar conditionality: Describes any conditionality on the entity. Known values are: + "hypothetical" and "conditional". + :vartype conditionality: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.Conditionality + :ivar certainty: Describes the entities certainty and polarity. Known values are: "positive", + "positivePossible", "neutralPossible", "negativePossible", and "negative". + :vartype certainty: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.Certainty + :ivar association: Describes if the entity is the subject of the text or if it describes + someone else. Known values are: "subject" and "other". + :vartype association: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.Association + """ + + _attribute_map = { + "conditionality": {"key": "conditionality", "type": "str"}, + "certainty": {"key": "certainty", "type": "str"}, + "association": {"key": "association", "type": "str"}, + } + + def __init__( + self, + *, + conditionality: Optional[Union[str, "_models.Conditionality"]] = None, + certainty: Optional[Union[str, "_models.Certainty"]] = None, + association: Optional[Union[str, "_models.Association"]] = None, + **kwargs + ): + """ + :keyword conditionality: Describes any conditionality on the entity. Known values are: + "hypothetical" and "conditional". + :paramtype conditionality: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.Conditionality + :keyword certainty: Describes the entities certainty and polarity. Known values are: + "positive", "positivePossible", "neutralPossible", "negativePossible", and "negative". + :paramtype certainty: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.Certainty + :keyword association: Describes if the entity is the subject of the text or if it describes + someone else. Known values are: "subject" and "other". + :paramtype association: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.Association + """ + super().__init__(**kwargs) + self.conditionality = conditionality + self.certainty = certainty + self.association = association + + +class HealthcareEntitiesDocumentResult(DocumentResult): + """HealthcareEntitiesDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Healthcare entities. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntity] + :ivar relations: Healthcare entity relations. Required. + :vartype relations: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelation] + :ivar fhir_bundle: JSON bundle containing a FHIR compatible object for consumption in other + Healthcare tools. For additional information see https://www.hl7.org/fhir/overview.html. + :vartype fhir_bundle: dict[str, any] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + 'relations': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[HealthcareEntity]"}, + "relations": {"key": "relations", "type": "[HealthcareRelation]"}, + "fhir_bundle": {"key": "fhirBundle", "type": "{object}"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.HealthcareEntity"], + relations: List["_models.HealthcareRelation"], + statistics: Optional["_models.DocumentStatistics"] = None, + fhir_bundle: Optional[Dict[str, Any]] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Healthcare entities. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntity] + :keyword relations: Healthcare entity relations. Required. + :paramtype relations: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelation] + :keyword fhir_bundle: JSON bundle containing a FHIR compatible object for consumption in other + Healthcare tools. For additional information see https://www.hl7.org/fhir/overview.html. + :paramtype fhir_bundle: dict[str, any] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.entities = entities + self.relations = relations + self.fhir_bundle = fhir_bundle + + +class HealthcareEntity(_serialization.Model): + """HealthcareEntity. + + All required parameters must be populated in order to send to Azure. + + :ivar text: Entity text as appears in the request. Required. + :vartype text: str + :ivar category: Healthcare Entity Category. Required. Known values are: "BodyStructure", "Age", + "Gender", "ExaminationName", "Date", "Direction", "Frequency", "MeasurementValue", + "MeasurementUnit", "RelationalOperator", "Time", "GeneOrProtein", "Variant", + "AdministrativeEvent", "CareEnvironment", "HealthcareProfession", "Diagnosis", "SymptomOrSign", + "ConditionQualifier", "MedicationClass", "MedicationName", "Dosage", "MedicationForm", + "MedicationRoute", "FamilyRelation", and "TreatmentName". + :vartype category: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntityCategory + :ivar subcategory: (Optional) Entity sub type. + :vartype subcategory: str + :ivar offset: Start position for the entity text. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :vartype offset: int + :ivar length: Length for the entity text. Use of different 'stringIndexType' values can affect + the length returned. Required. + :vartype length: int + :ivar confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :vartype confidence_score: float + :ivar assertion: + :vartype assertion: ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareAssertion + :ivar name: Preferred name for the entity. Example: 'histologically' would have a 'name' of + 'histologic'. + :vartype name: str + :ivar links: Entity references in known data sources. + :vartype links: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntityLink] + """ + + _validation = { + 'text': {'required': True}, + 'category': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + 'confidence_score': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "category": {"key": "category", "type": "str"}, + "subcategory": {"key": "subcategory", "type": "str"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + "assertion": {"key": "assertion", "type": "HealthcareAssertion"}, + "name": {"key": "name", "type": "str"}, + "links": {"key": "links", "type": "[HealthcareEntityLink]"}, + } + + def __init__( + self, + *, + text: str, + category: Union[str, "_models.HealthcareEntityCategory"], + offset: int, + length: int, + confidence_score: float, + subcategory: Optional[str] = None, + assertion: Optional["_models.HealthcareAssertion"] = None, + name: Optional[str] = None, + links: Optional[List["_models.HealthcareEntityLink"]] = None, + **kwargs + ): + """ + :keyword text: Entity text as appears in the request. Required. + :paramtype text: str + :keyword category: Healthcare Entity Category. Required. Known values are: "BodyStructure", + "Age", "Gender", "ExaminationName", "Date", "Direction", "Frequency", "MeasurementValue", + "MeasurementUnit", "RelationalOperator", "Time", "GeneOrProtein", "Variant", + "AdministrativeEvent", "CareEnvironment", "HealthcareProfession", "Diagnosis", "SymptomOrSign", + "ConditionQualifier", "MedicationClass", "MedicationName", "Dosage", "MedicationForm", + "MedicationRoute", "FamilyRelation", and "TreatmentName". + :paramtype category: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntityCategory + :keyword subcategory: (Optional) Entity sub type. + :paramtype subcategory: str + :keyword offset: Start position for the entity text. Use of different 'stringIndexType' values + can affect the offset returned. Required. + :paramtype offset: int + :keyword length: Length for the entity text. Use of different 'stringIndexType' values can + affect the length returned. Required. + :paramtype length: int + :keyword confidence_score: Confidence score between 0 and 1 of the extracted entity. Required. + :paramtype confidence_score: float + :keyword assertion: + :paramtype assertion: ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareAssertion + :keyword name: Preferred name for the entity. Example: 'histologically' would have a 'name' of + 'histologic'. + :paramtype name: str + :keyword links: Entity references in known data sources. + :paramtype links: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntityLink] + """ + super().__init__(**kwargs) + self.text = text + self.category = category + self.subcategory = subcategory + self.offset = offset + self.length = length + self.confidence_score = confidence_score + self.assertion = assertion + self.name = name + self.links = links + + +class HealthcareEntityLink(_serialization.Model): + """HealthcareEntityLink. + + All required parameters must be populated in order to send to Azure. + + :ivar data_source: Entity Catalog. Examples include: UMLS, CHV, MSH, etc. Required. + :vartype data_source: str + :ivar id: Entity id in the given source catalog. Required. + :vartype id: str + """ + + _validation = { + 'data_source': {'required': True}, + 'id': {'required': True}, + } + + _attribute_map = { + "data_source": {"key": "dataSource", "type": "str"}, + "id": {"key": "id", "type": "str"}, + } + + def __init__( + self, + *, + data_source: str, + id: str, # pylint: disable=redefined-builtin + **kwargs + ): + """ + :keyword data_source: Entity Catalog. Examples include: UMLS, CHV, MSH, etc. Required. + :paramtype data_source: str + :keyword id: Entity id in the given source catalog. Required. + :paramtype id: str + """ + super().__init__(**kwargs) + self.data_source = data_source + self.id = id + + +class HealthcareLROResult(AnalyzeTextLROResult): + """HealthcareLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "HealthcareResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.HealthcareResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'HealthcareLROResults' # type: str + self.results = results + + +class HealthcareLROTask(AnalyzeTextLROTask): + """HealthcareLROTask. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Healthcare task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "HealthcareTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.HealthcareTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Healthcare task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'Healthcare' # type: str + self.parameters = parameters + + +class HealthcareRelation(_serialization.Model): + """Every relation is an entity graph of a certain relationType, where all entities are connected and have specific roles within the relation context. + + All required parameters must be populated in order to send to Azure. + + :ivar relation_type: Type of relation. Examples include: ``DosageOfMedication`` or + 'FrequencyOfMedication', etc. Required. Known values are: "Abbreviation", + "DirectionOfBodyStructure", "DirectionOfCondition", "DirectionOfExamination", + "DirectionOfTreatment", "DosageOfMedication", "FormOfMedication", "FrequencyOfMedication", + "FrequencyOfTreatment", "QualifierOfCondition", "RelationOfExamination", "RouteOfMedication", + "TimeOfCondition", "TimeOfEvent", "TimeOfExamination", "TimeOfMedication", "TimeOfTreatment", + "UnitOfCondition", "UnitOfExamination", "ValueOfCondition", and "ValueOfExamination". + :vartype relation_type: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.RelationType + :ivar confidence_score: Confidence score between 0 and 1 of the extracted relation. + :vartype confidence_score: float + :ivar entities: The entities in the relation. Required. + :vartype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelationEntity] + """ + + _validation = { + 'relation_type': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "relation_type": {"key": "relationType", "type": "str"}, + "confidence_score": {"key": "confidenceScore", "type": "float"}, + "entities": {"key": "entities", "type": "[HealthcareRelationEntity]"}, + } + + def __init__( + self, + *, + relation_type: Union[str, "_models.RelationType"], + entities: List["_models.HealthcareRelationEntity"], + confidence_score: Optional[float] = None, + **kwargs + ): + """ + :keyword relation_type: Type of relation. Examples include: ``DosageOfMedication`` or + 'FrequencyOfMedication', etc. Required. Known values are: "Abbreviation", + "DirectionOfBodyStructure", "DirectionOfCondition", "DirectionOfExamination", + "DirectionOfTreatment", "DosageOfMedication", "FormOfMedication", "FrequencyOfMedication", + "FrequencyOfTreatment", "QualifierOfCondition", "RelationOfExamination", "RouteOfMedication", + "TimeOfCondition", "TimeOfEvent", "TimeOfExamination", "TimeOfMedication", "TimeOfTreatment", + "UnitOfCondition", "UnitOfExamination", "ValueOfCondition", and "ValueOfExamination". + :paramtype relation_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.RelationType + :keyword confidence_score: Confidence score between 0 and 1 of the extracted relation. + :paramtype confidence_score: float + :keyword entities: The entities in the relation. Required. + :paramtype entities: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelationEntity] + """ + super().__init__(**kwargs) + self.relation_type = relation_type + self.confidence_score = confidence_score + self.entities = entities + + +class HealthcareRelationEntity(_serialization.Model): + """HealthcareRelationEntity. + + All required parameters must be populated in order to send to Azure. + + :ivar ref: Reference link object, using a JSON pointer RFC 6901 (URI Fragment Identifier + Representation), pointing to the entity . Required. + :vartype ref: str + :ivar role: Role of entity in the relationship. For example: 'CD20-positive diffuse large + B-cell lymphoma' has the following entities with their roles in parenthesis: CD20 + (GeneOrProtein), Positive (Expression), diffuse large B-cell lymphoma (Diagnosis). Required. + :vartype role: str + """ + + _validation = { + 'ref': {'required': True}, + 'role': {'required': True}, + } + + _attribute_map = { + "ref": {"key": "ref", "type": "str"}, + "role": {"key": "role", "type": "str"}, + } + + def __init__( + self, + *, + ref: str, + role: str, + **kwargs + ): + """ + :keyword ref: Reference link object, using a JSON pointer RFC 6901 (URI Fragment Identifier + Representation), pointing to the entity . Required. + :paramtype ref: str + :keyword role: Role of entity in the relationship. For example: 'CD20-positive diffuse large + B-cell lymphoma' has the following entities with their roles in parenthesis: CD20 + (GeneOrProtein), Positive (Expression), diffuse large B-cell lymphoma (Diagnosis). Required. + :paramtype role: str + """ + super().__init__(**kwargs) + self.ref = ref + self.role = role + + +class HealthcareResult(PreBuiltResult): + """HealthcareResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[HealthcareResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.HealthcareResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class HealthcareResultDocumentsItem(HealthcareEntitiesDocumentResult, DocumentDetectedLanguage): + """HealthcareResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar entities: Healthcare entities. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntity] + :ivar relations: Healthcare entity relations. Required. + :vartype relations: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelation] + :ivar fhir_bundle: JSON bundle containing a FHIR compatible object for consumption in other + Healthcare tools. For additional information see https://www.hl7.org/fhir/overview.html. + :vartype fhir_bundle: dict[str, any] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'entities': {'required': True}, + 'relations': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "entities": {"key": "entities", "type": "[HealthcareEntity]"}, + "relations": {"key": "relations", "type": "[HealthcareRelation]"}, + "fhir_bundle": {"key": "fhirBundle", "type": "{object}"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + entities: List["_models.HealthcareEntity"], + relations: List["_models.HealthcareRelation"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + fhir_bundle: Optional[Dict[str, Any]] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword entities: Healthcare entities. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareEntity] + :keyword relations: Healthcare entity relations. Required. + :paramtype relations: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareRelation] + :keyword fhir_bundle: JSON bundle containing a FHIR compatible object for consumption in other + Healthcare tools. For additional information see https://www.hl7.org/fhir/overview.html. + :paramtype fhir_bundle: dict[str, any] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, entities=entities, relations=relations, fhir_bundle=fhir_bundle, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.entities = entities + self.relations = relations + self.fhir_bundle = fhir_bundle + + +class HealthcareTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a Healthcare task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar fhir_version: The FHIR Spec version that the result will use to format the fhirBundle. + For additional information see https://www.hl7.org/fhir/overview.html. "4.0.1" + :vartype fhir_version: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.FhirVersion + :ivar document_type: Document type that can be provided as input for Fhir Documents. Expect to + have fhirVersion provided when used. Behavior of using None enum is the same as not using the + documentType parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". + :vartype document_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareDocumentType + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "fhir_version": {"key": "fhirVersion", "type": "str"}, + "document_type": {"key": "documentType", "type": "str"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + fhir_version: Optional[Union[str, "_models.FhirVersion"]] = None, + document_type: Optional[Union[str, "_models.HealthcareDocumentType"]] = None, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword fhir_version: The FHIR Spec version that the result will use to format the fhirBundle. + For additional information see https://www.hl7.org/fhir/overview.html. "4.0.1" + :paramtype fhir_version: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.FhirVersion + :keyword document_type: Document type that can be provided as input for Fhir Documents. Expect + to have fhirVersion provided when used. Behavior of using None enum is the same as not using + the documentType parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". + :paramtype document_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.HealthcareDocumentType + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.fhir_version = fhir_version + self.document_type = document_type + self.string_index_type = string_index_type + + +class InformationResolution(BaseResolution, QuantityResolution): + """Represents the information (data) entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The information (data) Unit of measurement. Required. Known values are: + "Unspecified", "Bit", "Kilobit", "Megabit", "Gigabit", "Terabit", "Petabit", "Byte", + "Kilobyte", "Megabyte", "Gigabyte", "Terabyte", and "Petabyte". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.InformationUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.InformationUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The information (data) Unit of measurement. Required. Known values are: + "Unspecified", "Bit", "Kilobit", "Megabit", "Gigabit", "Terabit", "Petabit", "Byte", + "Kilobyte", "Megabyte", "Gigabyte", "Terabyte", and "Petabyte". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.InformationUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'InformationResolution' # type: str + self.unit = unit + + +class InnerErrorModel(_serialization.Model): + """An object containing more specific information about the error. As per Microsoft One API guidelines - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses. + + All required parameters must be populated in order to send to Azure. + + :ivar code: One of a server-defined set of error codes. Required. Known values are: + "InvalidRequest", "InvalidParameterValue", "KnowledgeBaseNotFound", + "AzureCognitiveSearchNotFound", "AzureCognitiveSearchThrottling", "ExtractionFailure", + "InvalidRequestBodyFormat", "EmptyRequest", "MissingInputDocuments", "InvalidDocument", + "ModelVersionIncorrect", "InvalidDocumentBatch", "UnsupportedLanguageCode", and + "InvalidCountryHint". + :vartype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorCode + :ivar message: Error message. Required. + :vartype message: str + :ivar details: Error details. + :vartype details: dict[str, str] + :ivar target: Error target. + :vartype target: str + :ivar innererror: An object containing more specific information than the current object about + the error. + :vartype innererror: ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorModel + """ + + _validation = { + 'code': {'required': True}, + 'message': {'required': True}, + } + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "details": {"key": "details", "type": "{str}"}, + "target": {"key": "target", "type": "str"}, + "innererror": {"key": "innererror", "type": "InnerErrorModel"}, + } + + def __init__( + self, + *, + code: Union[str, "_models.InnerErrorCode"], + message: str, + details: Optional[Dict[str, str]] = None, + target: Optional[str] = None, + innererror: Optional["_models.InnerErrorModel"] = None, + **kwargs + ): + """ + :keyword code: One of a server-defined set of error codes. Required. Known values are: + "InvalidRequest", "InvalidParameterValue", "KnowledgeBaseNotFound", + "AzureCognitiveSearchNotFound", "AzureCognitiveSearchThrottling", "ExtractionFailure", + "InvalidRequestBodyFormat", "EmptyRequest", "MissingInputDocuments", "InvalidDocument", + "ModelVersionIncorrect", "InvalidDocumentBatch", "UnsupportedLanguageCode", and + "InvalidCountryHint". + :paramtype code: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorCode + :keyword message: Error message. Required. + :paramtype message: str + :keyword details: Error details. + :paramtype details: dict[str, str] + :keyword target: Error target. + :paramtype target: str + :keyword innererror: An object containing more specific information than the current object + about the error. + :paramtype innererror: ~azure.ai.textanalytics.v2022_10_01_preview.models.InnerErrorModel + """ + super().__init__(**kwargs) + self.code = code + self.message = message + self.details = details + self.target = target + self.innererror = innererror + + +class InputError(_serialization.Model): + """Contains details of errors encountered during a job execution. + + All required parameters must be populated in order to send to Azure. + + :ivar id: The ID of the input. Required. + :vartype id: str + :ivar error: Error encountered. Required. + :vartype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + + _validation = { + 'id': {'required': True}, + 'error': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "error": {"key": "error", "type": "Error"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + error: "_models.Error", + **kwargs + ): + """ + :keyword id: The ID of the input. Required. + :paramtype id: str + :keyword error: Error encountered. Required. + :paramtype error: ~azure.ai.textanalytics.v2022_10_01_preview.models.Error + """ + super().__init__(**kwargs) + self.id = id + self.error = error + + +class KeyPhraseExtractionLROResult(AnalyzeTextLROResult): + """KeyPhraseExtractionLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "KeyPhraseResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.KeyPhraseResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'KeyPhraseExtractionLROResults' # type: str + self.results = results + + +class KeyPhraseLROTask(AnalyzeTextLROTask): + """An object representing the task definition for a Key Phrase Extraction task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Key Phrase Extraction task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "KeyPhraseTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.KeyPhraseTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Key Phrase Extraction task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'KeyPhraseExtraction' # type: str + self.parameters = parameters + + +class KeyPhraseResult(PreBuiltResult): + """KeyPhraseResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[KeyPhraseResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.KeyPhraseResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class KeyPhrasesDocumentResult(DocumentResult): + """KeyPhrasesDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar key_phrases: A list of representative words or phrases. The number of key phrases + returned is proportional to the number of words in the input document. Required. + :vartype key_phrases: list[str] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'key_phrases': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "key_phrases": {"key": "keyPhrases", "type": "[str]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + key_phrases: List[str], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword key_phrases: A list of representative words or phrases. The number of key phrases + returned is proportional to the number of words in the input document. Required. + :paramtype key_phrases: list[str] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.key_phrases = key_phrases + + +class KeyPhraseResultDocumentsItem(KeyPhrasesDocumentResult, DocumentDetectedLanguage): + """KeyPhraseResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar key_phrases: A list of representative words or phrases. The number of key phrases + returned is proportional to the number of words in the input document. Required. + :vartype key_phrases: list[str] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'key_phrases': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "key_phrases": {"key": "keyPhrases", "type": "[str]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + key_phrases: List[str], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword key_phrases: A list of representative words or phrases. The number of key phrases + returned is proportional to the number of words in the input document. Required. + :paramtype key_phrases: list[str] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, key_phrases=key_phrases, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.key_phrases = key_phrases + + +class KeyPhraseTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a Key Phrase Extraction task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + + +class KeyPhraseTaskResult(AnalyzeTextTaskResult): + """KeyPhraseTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "KeyPhraseResult"}, + } + + def __init__( + self, + *, + results: "_models.KeyPhraseResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.KeyPhraseResult + """ + super().__init__(**kwargs) + self.kind = 'KeyPhraseExtractionResults' # type: str + self.results = results + + +class LanguageDetectionAnalysisInput(_serialization.Model): + """LanguageDetectionAnalysisInput. + + :ivar documents: + :vartype documents: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageInput] + """ + + _attribute_map = { + "documents": {"key": "documents", "type": "[LanguageInput]"}, + } + + def __init__( + self, + *, + documents: Optional[List["_models.LanguageInput"]] = None, + **kwargs + ): + """ + :keyword documents: + :paramtype documents: list[~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageInput] + """ + super().__init__(**kwargs) + self.documents = documents + + +class LanguageDetectionDocumentResult(DocumentResult): + """LanguageDetectionDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar detected_language: Detected Language. Required. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'detected_language': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + detected_language: "_models.DetectedLanguage", + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword detected_language: Detected Language. Required. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.detected_language = detected_language + + +class LanguageDetectionResult(PreBuiltResult): + """LanguageDetectionResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionDocumentResult] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[LanguageDetectionDocumentResult]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.LanguageDetectionDocumentResult"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionDocumentResult] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class LanguageDetectionTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a Language Detection task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + + +class LanguageDetectionTaskResult(AnalyzeTextTaskResult): + """LanguageDetectionTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "LanguageDetectionResult"}, + } + + def __init__( + self, + *, + results: "_models.LanguageDetectionResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.LanguageDetectionResult + """ + super().__init__(**kwargs) + self.kind = 'LanguageDetectionResults' # type: str + self.results = results + + +class LanguageInput(_serialization.Model): + """LanguageInput. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar text: Required. + :vartype text: str + :ivar country_hint: + :vartype country_hint: str + """ + + _validation = { + 'id': {'required': True}, + 'text': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "text": {"key": "text", "type": "str"}, + "country_hint": {"key": "countryHint", "type": "str"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + text: str, + country_hint: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword text: Required. + :paramtype text: str + :keyword country_hint: + :paramtype country_hint: str + """ + super().__init__(**kwargs) + self.id = id + self.text = text + self.country_hint = country_hint + + +class LengthResolution(BaseResolution, QuantityResolution): + """Represents the length entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The length Unit of measurement. Required. Known values are: "Unspecified", + "Kilometer", "Hectometer", "Decameter", "Meter", "Decimeter", "Centimeter", "Millimeter", + "Micrometer", "Nanometer", "Picometer", "Mile", "Yard", "Inch", "Foot", "LightYear", and "Pt". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.LengthUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.LengthUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The length Unit of measurement. Required. Known values are: "Unspecified", + "Kilometer", "Hectometer", "Decameter", "Meter", "Decimeter", "Centimeter", "Millimeter", + "Micrometer", "Nanometer", "Picometer", "Mile", "Yard", "Inch", "Foot", "LightYear", and "Pt". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.LengthUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'LengthResolution' # type: str + self.unit = unit + + +class LinkedEntity(_serialization.Model): + """LinkedEntity. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Entity Linking formal name. Required. + :vartype name: str + :ivar matches: List of instances this entity appears in the text. Required. + :vartype matches: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Match] + :ivar language: Language used in the data source. Required. + :vartype language: str + :ivar id: Unique identifier of the recognized entity from the data source. + :vartype id: str + :ivar url: URL for the entity's page from the data source. Required. + :vartype url: str + :ivar data_source: Data source used to extract entity linking, such as Wiki/Bing etc. Required. + :vartype data_source: str + :ivar bing_id: Bing Entity Search API unique identifier of the recognized entity. + :vartype bing_id: str + """ + + _validation = { + 'name': {'required': True}, + 'matches': {'required': True}, + 'language': {'required': True}, + 'url': {'required': True}, + 'data_source': {'required': True}, + } + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "matches": {"key": "matches", "type": "[Match]"}, + "language": {"key": "language", "type": "str"}, + "id": {"key": "id", "type": "str"}, + "url": {"key": "url", "type": "str"}, + "data_source": {"key": "dataSource", "type": "str"}, + "bing_id": {"key": "bingId", "type": "str"}, + } + + def __init__( + self, + *, + name: str, + matches: List["_models.Match"], + language: str, + url: str, + data_source: str, + id: Optional[str] = None, # pylint: disable=redefined-builtin + bing_id: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Entity Linking formal name. Required. + :paramtype name: str + :keyword matches: List of instances this entity appears in the text. Required. + :paramtype matches: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Match] + :keyword language: Language used in the data source. Required. + :paramtype language: str + :keyword id: Unique identifier of the recognized entity from the data source. + :paramtype id: str + :keyword url: URL for the entity's page from the data source. Required. + :paramtype url: str + :keyword data_source: Data source used to extract entity linking, such as Wiki/Bing etc. + Required. + :paramtype data_source: str + :keyword bing_id: Bing Entity Search API unique identifier of the recognized entity. + :paramtype bing_id: str + """ + super().__init__(**kwargs) + self.name = name + self.matches = matches + self.language = language + self.id = id + self.url = url + self.data_source = data_source + self.bing_id = bing_id + + +class Match(_serialization.Model): + """Match. + + All required parameters must be populated in order to send to Azure. + + :ivar confidence_score: If a well known item is recognized, a decimal number denoting the + confidence level between 0 and 1 will be returned. Required. + :vartype confidence_score: float + :ivar text: Entity text as appears in the request. Required. + :vartype text: str + :ivar offset: Start position for the entity match text. Required. + :vartype offset: int + :ivar length: Length for the entity match text. Required. + :vartype length: int + """ + + _validation = { + 'confidence_score': {'required': True}, + 'text': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + } + + _attribute_map = { + "confidence_score": {"key": "confidenceScore", "type": "float"}, + "text": {"key": "text", "type": "str"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + } + + def __init__( + self, + *, + confidence_score: float, + text: str, + offset: int, + length: int, + **kwargs + ): + """ + :keyword confidence_score: If a well known item is recognized, a decimal number denoting the + confidence level between 0 and 1 will be returned. Required. + :paramtype confidence_score: float + :keyword text: Entity text as appears in the request. Required. + :paramtype text: str + :keyword offset: Start position for the entity match text. Required. + :paramtype offset: int + :keyword length: Length for the entity match text. Required. + :paramtype length: int + """ + super().__init__(**kwargs) + self.confidence_score = confidence_score + self.text = text + self.offset = offset + self.length = length + + +class MultiLanguageAnalysisInput(_serialization.Model): + """MultiLanguageAnalysisInput. + + :ivar documents: + :vartype documents: list[~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageInput] + """ + + _attribute_map = { + "documents": {"key": "documents", "type": "[MultiLanguageInput]"}, + } + + def __init__( + self, + *, + documents: Optional[List["_models.MultiLanguageInput"]] = None, + **kwargs + ): + """ + :keyword documents: + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.MultiLanguageInput] + """ + super().__init__(**kwargs) + self.documents = documents + + +class MultiLanguageInput(_serialization.Model): + """Contains an input document to be analyzed by the service. + + All required parameters must be populated in order to send to Azure. + + :ivar id: A unique, non-empty document identifier. Required. + :vartype id: str + :ivar text: The input text to process. Required. + :vartype text: str + :ivar language: (Optional) This is the 2 letter ISO 639-1 representation of a language. For + example, use "en" for English; "es" for Spanish etc. For Auto Language Detection, use "auto". + If not set, use "en" for English as default. + :vartype language: str + """ + + _validation = { + 'id': {'required': True}, + 'text': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "text": {"key": "text", "type": "str"}, + "language": {"key": "language", "type": "str"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + text: str, + language: Optional[str] = None, + **kwargs + ): + """ + :keyword id: A unique, non-empty document identifier. Required. + :paramtype id: str + :keyword text: The input text to process. Required. + :paramtype text: str + :keyword language: (Optional) This is the 2 letter ISO 639-1 representation of a language. For + example, use "en" for English; "es" for Spanish etc. For Auto Language Detection, use "auto". + If not set, use "en" for English as default. + :paramtype language: str + """ + super().__init__(**kwargs) + self.id = id + self.text = text + self.language = language + + +class NumberResolution(BaseResolution): + """A resolution for numeric entity instances. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar number_kind: The type of the extracted number entity. Required. Known values are: + "Integer", "Decimal", "Power", "Fraction", "Percent", and "Unspecified". + :vartype number_kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.NumberKind + :ivar value: A numeric representation of what the extracted text denotes. Required. + :vartype value: str + """ + + _validation = { + 'resolution_kind': {'required': True}, + 'number_kind': {'required': True}, + 'value': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "number_kind": {"key": "numberKind", "type": "str"}, + "value": {"key": "value", "type": "str"}, + } + + def __init__( + self, + *, + number_kind: Union[str, "_models.NumberKind"], + value: str, + **kwargs + ): + """ + :keyword number_kind: The type of the extracted number entity. Required. Known values are: + "Integer", "Decimal", "Power", "Fraction", "Percent", and "Unspecified". + :paramtype number_kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.NumberKind + :keyword value: A numeric representation of what the extracted text denotes. Required. + :paramtype value: str + """ + super().__init__(**kwargs) + self.resolution_kind = 'NumberResolution' # type: str + self.number_kind = number_kind + self.value = value + + +class NumericRangeResolution(BaseResolution): + """represents the resolution of numeric intervals. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar range_kind: The kind of range that the resolution object represents. Required. Known + values are: "Number", "Speed", "Weight", "Length", "Volume", "Area", "Age", "Information", + "Temperature", and "Currency". + :vartype range_kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.RangeKind + :ivar minimum: The beginning value of the interval. Required. + :vartype minimum: float + :ivar maximum: The ending value of the interval. Required. + :vartype maximum: float + """ + + _validation = { + 'resolution_kind': {'required': True}, + 'range_kind': {'required': True}, + 'minimum': {'required': True}, + 'maximum': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "range_kind": {"key": "rangeKind", "type": "str"}, + "minimum": {"key": "minimum", "type": "float"}, + "maximum": {"key": "maximum", "type": "float"}, + } + + def __init__( + self, + *, + range_kind: Union[str, "_models.RangeKind"], + minimum: float, + maximum: float, + **kwargs + ): + """ + :keyword range_kind: The kind of range that the resolution object represents. Required. Known + values are: "Number", "Speed", "Weight", "Length", "Volume", "Area", "Age", "Information", + "Temperature", and "Currency". + :paramtype range_kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.RangeKind + :keyword minimum: The beginning value of the interval. Required. + :paramtype minimum: float + :keyword maximum: The ending value of the interval. Required. + :paramtype maximum: float + """ + super().__init__(**kwargs) + self.resolution_kind = 'NumericRangeResolution' # type: str + self.range_kind = range_kind + self.minimum = minimum + self.maximum = maximum + + +class OrdinalResolution(BaseResolution): + """A resolution for ordinal numbers entity instances. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar offset: The offset With respect to the reference (e.g., offset = -1 in "show me the + second to last". Required. + :vartype offset: str + :ivar relative_to: The reference point that the ordinal number denotes. Required. Known values + are: "Current", "End", and "Start". + :vartype relative_to: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.RelativeTo + :ivar value: A simple arithmetic expression that the ordinal denotes. Required. + :vartype value: str + """ + + _validation = { + 'resolution_kind': {'required': True}, + 'offset': {'required': True}, + 'relative_to': {'required': True}, + 'value': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "offset": {"key": "offset", "type": "str"}, + "relative_to": {"key": "relativeTo", "type": "str"}, + "value": {"key": "value", "type": "str"}, + } + + def __init__( + self, + *, + offset: str, + relative_to: Union[str, "_models.RelativeTo"], + value: str, + **kwargs + ): + """ + :keyword offset: The offset With respect to the reference (e.g., offset = -1 in "show me the + second to last". Required. + :paramtype offset: str + :keyword relative_to: The reference point that the ordinal number denotes. Required. Known + values are: "Current", "End", and "Start". + :paramtype relative_to: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.RelativeTo + :keyword value: A simple arithmetic expression that the ordinal denotes. Required. + :paramtype value: str + """ + super().__init__(**kwargs) + self.resolution_kind = 'OrdinalResolution' # type: str + self.offset = offset + self.relative_to = relative_to + self.value = value + + +class Pagination(_serialization.Model): + """Pagination. + + :ivar next_link: + :vartype next_link: str + """ + + _attribute_map = { + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__( + self, + *, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword next_link: + :paramtype next_link: str + """ + super().__init__(**kwargs) + self.next_link = next_link + + +class PhraseControl(_serialization.Model): + """Control the phrases to be used in the summary. + + All required parameters must be populated in order to send to Azure. + + :ivar target_phrase: The target phrase to control. Required. + :vartype target_phrase: str + :ivar strategy: The strategy to use in phrase control. Required. Known values are: "encourage", + "discourage", and "disallow". + :vartype strategy: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControlStrategy + """ + + _validation = { + 'target_phrase': {'required': True}, + 'strategy': {'required': True}, + } + + _attribute_map = { + "target_phrase": {"key": "targetPhrase", "type": "str"}, + "strategy": {"key": "strategy", "type": "str"}, + } + + def __init__( + self, + *, + target_phrase: str, + strategy: Union[str, "_models.PhraseControlStrategy"], + **kwargs + ): + """ + :keyword target_phrase: The target phrase to control. Required. + :paramtype target_phrase: str + :keyword strategy: The strategy to use in phrase control. Required. Known values are: + "encourage", "discourage", and "disallow". + :paramtype strategy: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.PhraseControlStrategy + """ + super().__init__(**kwargs) + self.target_phrase = target_phrase + self.strategy = strategy + + +class PiiEntitiesDocumentResult(DocumentResult): + """PiiEntitiesDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar redacted_text: Returns redacted text. Required. + :vartype redacted_text: str + :ivar entities: Recognized entities in the document. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Entity] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'redacted_text': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "redacted_text": {"key": "redactedText", "type": "str"}, + "entities": {"key": "entities", "type": "[Entity]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + redacted_text: str, + entities: List["_models.Entity"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword redacted_text: Returns redacted text. Required. + :paramtype redacted_text: str + :keyword entities: Recognized entities in the document. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Entity] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.redacted_text = redacted_text + self.entities = entities + + +class PiiEntityRecognitionLROResult(AnalyzeTextLROResult): + """PiiEntityRecognitionLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResult + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "PiiResult"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.PiiResult", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResult + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'PiiEntityRecognitionLROResults' # type: str + self.results = results + + +class PiiLROTask(AnalyzeTextLROTask): + """An object representing the task definition for a PII Entities Recognition task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a PII Entities Recognition task. + :vartype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "PiiTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.PiiTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a PII Entities Recognition task. + :paramtype parameters: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'PiiEntityRecognition' # type: str + self.parameters = parameters + + +class PiiResult(PreBuiltResult): + """PiiResult. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Response by document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResultDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[PiiResultDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.PiiResultDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Response by document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResultDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class PiiResultDocumentsItem(PiiEntitiesDocumentResult, DocumentDetectedLanguage): + """PiiResultDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar redacted_text: Returns redacted text. Required. + :vartype redacted_text: str + :ivar entities: Recognized entities in the document. Required. + :vartype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Entity] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'redacted_text': {'required': True}, + 'entities': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "redacted_text": {"key": "redactedText", "type": "str"}, + "entities": {"key": "entities", "type": "[Entity]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + redacted_text: str, + entities: List["_models.Entity"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword redacted_text: Returns redacted text. Required. + :paramtype redacted_text: str + :keyword entities: Recognized entities in the document. Required. + :paramtype entities: list[~azure.ai.textanalytics.v2022_10_01_preview.models.Entity] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, redacted_text=redacted_text, entities=entities, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.redacted_text = redacted_text + self.entities = entities + + +class PiiTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a PII Entities Recognition task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar domain: The PII domain used for PII Entity Recognition. Known values are: "phi" and + "none". + :vartype domain: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiDomain + :ivar pii_categories: (Optional) describes the PII categories to return. + :vartype pii_categories: list[str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiCategory] + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _validation = { + 'pii_categories': {'unique': True}, + } + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "domain": {"key": "domain", "type": "str"}, + "pii_categories": {"key": "piiCategories", "type": "[str]"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + domain: Union[str, "_models.PiiDomain"] = "none", + pii_categories: Optional[List[Union[str, "_models.PiiCategory"]]] = None, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword domain: The PII domain used for PII Entity Recognition. Known values are: "phi" and + "none". + :paramtype domain: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiDomain + :keyword pii_categories: (Optional) describes the PII categories to return. + :paramtype pii_categories: list[str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiCategory] + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.domain = domain + self.pii_categories = pii_categories + self.string_index_type = string_index_type + + +class PiiTaskResult(AnalyzeTextTaskResult): + """PiiTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResult + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "PiiResult"}, + } + + def __init__( + self, + *, + results: "_models.PiiResult", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.PiiResult + """ + super().__init__(**kwargs) + self.kind = 'PiiEntityRecognitionResults' # type: str + self.results = results + + +class SentenceAssessment(_serialization.Model): + """SentenceAssessment. + + All required parameters must be populated in order to send to Azure. + + :ivar sentiment: Assessment sentiment in the sentence. Required. Known values are: "positive", + "mixed", and "negative". + :vartype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TokenSentimentValue + :ivar confidence_scores: Assessment sentiment confidence scores in the sentence. Required. + :vartype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetConfidenceScoreLabel + :ivar offset: The assessment offset from the start of the sentence. Required. + :vartype offset: int + :ivar length: The length of the assessment. Required. + :vartype length: int + :ivar text: The assessment text detected. Required. + :vartype text: str + :ivar is_negated: The indicator representing if the assessment is negated. Required. + :vartype is_negated: bool + """ + + _validation = { + 'sentiment': {'required': True}, + 'confidence_scores': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + 'text': {'required': True}, + 'is_negated': {'required': True}, + } + + _attribute_map = { + "sentiment": {"key": "sentiment", "type": "str"}, + "confidence_scores": {"key": "confidenceScores", "type": "TargetConfidenceScoreLabel"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "text": {"key": "text", "type": "str"}, + "is_negated": {"key": "isNegated", "type": "bool"}, + } + + def __init__( + self, + *, + sentiment: Union[str, "_models.TokenSentimentValue"], + confidence_scores: "_models.TargetConfidenceScoreLabel", + offset: int, + length: int, + text: str, + is_negated: bool, + **kwargs + ): + """ + :keyword sentiment: Assessment sentiment in the sentence. Required. Known values are: + "positive", "mixed", and "negative". + :paramtype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TokenSentimentValue + :keyword confidence_scores: Assessment sentiment confidence scores in the sentence. Required. + :paramtype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetConfidenceScoreLabel + :keyword offset: The assessment offset from the start of the sentence. Required. + :paramtype offset: int + :keyword length: The length of the assessment. Required. + :paramtype length: int + :keyword text: The assessment text detected. Required. + :paramtype text: str + :keyword is_negated: The indicator representing if the assessment is negated. Required. + :paramtype is_negated: bool + """ + super().__init__(**kwargs) + self.sentiment = sentiment + self.confidence_scores = confidence_scores + self.offset = offset + self.length = length + self.text = text + self.is_negated = is_negated + + +class SentenceSentiment(_serialization.Model): + """SentenceSentiment. + + All required parameters must be populated in order to send to Azure. + + :ivar text: The sentence text. Required. + :vartype text: str + :ivar sentiment: The predicted Sentiment for the sentence. Required. Known values are: + "positive", "neutral", and "negative". + :vartype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentimentValue + :ivar confidence_scores: The sentiment confidence score between 0 and 1 for the sentence for + all classes. Required. + :vartype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :ivar offset: The sentence offset from the start of the document. Required. + :vartype offset: int + :ivar length: The length of the sentence. Required. + :vartype length: int + :ivar targets: The array of sentence targets for the sentence. + :vartype targets: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceTarget] + :ivar assessments: The array of assessments for the sentence. + :vartype assessments: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceAssessment] + """ + + _validation = { + 'text': {'required': True}, + 'sentiment': {'required': True}, + 'confidence_scores': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + } + + _attribute_map = { + "text": {"key": "text", "type": "str"}, + "sentiment": {"key": "sentiment", "type": "str"}, + "confidence_scores": {"key": "confidenceScores", "type": "SentimentConfidenceScorePerLabel"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "targets": {"key": "targets", "type": "[SentenceTarget]"}, + "assessments": {"key": "assessments", "type": "[SentenceAssessment]"}, + } + + def __init__( + self, + *, + text: str, + sentiment: Union[str, "_models.SentenceSentimentValue"], + confidence_scores: "_models.SentimentConfidenceScorePerLabel", + offset: int, + length: int, + targets: Optional[List["_models.SentenceTarget"]] = None, + assessments: Optional[List["_models.SentenceAssessment"]] = None, + **kwargs + ): + """ + :keyword text: The sentence text. Required. + :paramtype text: str + :keyword sentiment: The predicted Sentiment for the sentence. Required. Known values are: + "positive", "neutral", and "negative". + :paramtype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentimentValue + :keyword confidence_scores: The sentiment confidence score between 0 and 1 for the sentence for + all classes. Required. + :paramtype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :keyword offset: The sentence offset from the start of the document. Required. + :paramtype offset: int + :keyword length: The length of the sentence. Required. + :paramtype length: int + :keyword targets: The array of sentence targets for the sentence. + :paramtype targets: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceTarget] + :keyword assessments: The array of assessments for the sentence. + :paramtype assessments: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceAssessment] + """ + super().__init__(**kwargs) + self.text = text + self.sentiment = sentiment + self.confidence_scores = confidence_scores + self.offset = offset + self.length = length + self.targets = targets + self.assessments = assessments + + +class SentenceTarget(_serialization.Model): + """SentenceTarget. + + All required parameters must be populated in order to send to Azure. + + :ivar sentiment: Targeted sentiment in the sentence. Required. Known values are: "positive", + "mixed", and "negative". + :vartype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TokenSentimentValue + :ivar confidence_scores: Target sentiment confidence scores for the target in the sentence. + Required. + :vartype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetConfidenceScoreLabel + :ivar offset: The target offset from the start of the sentence. Required. + :vartype offset: int + :ivar length: The length of the target. Required. + :vartype length: int + :ivar text: The target text detected. Required. + :vartype text: str + :ivar relations: The array of either assessment or target objects which is related to the + target. Required. + :vartype relations: list[~azure.ai.textanalytics.v2022_10_01_preview.models.TargetRelation] + """ + + _validation = { + 'sentiment': {'required': True}, + 'confidence_scores': {'required': True}, + 'offset': {'required': True}, + 'length': {'required': True}, + 'text': {'required': True}, + 'relations': {'required': True}, + } + + _attribute_map = { + "sentiment": {"key": "sentiment", "type": "str"}, + "confidence_scores": {"key": "confidenceScores", "type": "TargetConfidenceScoreLabel"}, + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + "text": {"key": "text", "type": "str"}, + "relations": {"key": "relations", "type": "[TargetRelation]"}, + } + + def __init__( + self, + *, + sentiment: Union[str, "_models.TokenSentimentValue"], + confidence_scores: "_models.TargetConfidenceScoreLabel", + offset: int, + length: int, + text: str, + relations: List["_models.TargetRelation"], + **kwargs + ): + """ + :keyword sentiment: Targeted sentiment in the sentence. Required. Known values are: "positive", + "mixed", and "negative". + :paramtype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TokenSentimentValue + :keyword confidence_scores: Target sentiment confidence scores for the target in the sentence. + Required. + :paramtype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetConfidenceScoreLabel + :keyword offset: The target offset from the start of the sentence. Required. + :paramtype offset: int + :keyword length: The length of the target. Required. + :paramtype length: int + :keyword text: The target text detected. Required. + :paramtype text: str + :keyword relations: The array of either assessment or target objects which is related to the + target. Required. + :paramtype relations: list[~azure.ai.textanalytics.v2022_10_01_preview.models.TargetRelation] + """ + super().__init__(**kwargs) + self.sentiment = sentiment + self.confidence_scores = confidence_scores + self.offset = offset + self.length = length + self.text = text + self.relations = relations + + +class SentimentAnalysisLROTask(AnalyzeTextLROTask): + """An object representing the task definition for a Sentiment Analysis task. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar kind: Enumeration of supported long-running Text Analysis tasks. Required. Known values + are: "SentimentAnalysis", "EntityRecognition", "PiiEntityRecognition", "KeyPhraseExtraction", + "EntityLinking", "Healthcare", "ExtractiveSummarization", "CustomEntityRecognition", + "CustomSingleLabelClassification", "CustomMultiLabelClassification", and + "AbstractiveSummarization". + :vartype kind: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROTaskKind + :ivar parameters: Supported parameters for a Sentiment Analysis task. + :vartype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentAnalysisTaskParameters + """ + + _validation = { + 'kind': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "parameters": {"key": "parameters", "type": "SentimentAnalysisTaskParameters"}, + } + + def __init__( + self, + *, + task_name: Optional[str] = None, + parameters: Optional["_models.SentimentAnalysisTaskParameters"] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword parameters: Supported parameters for a Sentiment Analysis task. + :paramtype parameters: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentAnalysisTaskParameters + """ + super().__init__(task_name=task_name, **kwargs) + self.kind = 'SentimentAnalysis' # type: str + self.parameters = parameters + + +class SentimentAnalysisTaskParameters(PreBuiltTaskParameters): + """Supported parameters for a Sentiment Analysis task. + + :ivar logging_opt_out: + :vartype logging_opt_out: bool + :ivar model_version: + :vartype model_version: str + :ivar opinion_mining: + :vartype opinion_mining: bool + :ivar string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :vartype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + + _attribute_map = { + "logging_opt_out": {"key": "loggingOptOut", "type": "bool"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "opinion_mining": {"key": "opinionMining", "type": "bool"}, + "string_index_type": {"key": "stringIndexType", "type": "str"}, + } + + def __init__( + self, + *, + logging_opt_out: bool = False, + model_version: str = "latest", + opinion_mining: bool = False, + string_index_type: Union[str, "_models.StringIndexType"] = "TextElements_v8", + **kwargs + ): + """ + :keyword logging_opt_out: + :paramtype logging_opt_out: bool + :keyword model_version: + :paramtype model_version: str + :keyword opinion_mining: + :paramtype opinion_mining: bool + :keyword string_index_type: Specifies the method used to interpret string offsets. Defaults to + Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. Known values are: "TextElements_v8", "UnicodeCodePoint", + and "Utf16CodeUnit". + :paramtype string_index_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.StringIndexType + """ + super().__init__(logging_opt_out=logging_opt_out, model_version=model_version, **kwargs) + self.opinion_mining = opinion_mining + self.string_index_type = string_index_type + + +class SentimentConfidenceScorePerLabel(_serialization.Model): + """Represents the confidence scores between 0 and 1 across all sentiment classes: positive, neutral, negative. + + All required parameters must be populated in order to send to Azure. + + :ivar positive: Confidence score for positive sentiment. Required. + :vartype positive: float + :ivar neutral: Confidence score for neutral sentiment. Required. + :vartype neutral: float + :ivar negative: Confidence score for negative sentiment. Required. + :vartype negative: float + """ + + _validation = { + 'positive': {'required': True}, + 'neutral': {'required': True}, + 'negative': {'required': True}, + } + + _attribute_map = { + "positive": {"key": "positive", "type": "float"}, + "neutral": {"key": "neutral", "type": "float"}, + "negative": {"key": "negative", "type": "float"}, + } + + def __init__( + self, + *, + positive: float, + neutral: float, + negative: float, + **kwargs + ): + """ + :keyword positive: Confidence score for positive sentiment. Required. + :paramtype positive: float + :keyword neutral: Confidence score for neutral sentiment. Required. + :paramtype neutral: float + :keyword negative: Confidence score for negative sentiment. Required. + :paramtype negative: float + """ + super().__init__(**kwargs) + self.positive = positive + self.neutral = neutral + self.negative = negative + + +class SentimentDocumentResult(DocumentResult): + """SentimentDocumentResult. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar sentiment: Predicted sentiment for document (Negative, Neutral, Positive, or Mixed). + Required. Known values are: "positive", "neutral", "negative", and "mixed". + :vartype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentSentimentValue + :ivar confidence_scores: Document level sentiment confidence scores between 0 and 1 for each + sentiment class. Required. + :vartype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :ivar sentences: Sentence level sentiment analysis. Required. + :vartype sentences: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentiment] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'sentiment': {'required': True}, + 'confidence_scores': {'required': True}, + 'sentences': {'required': True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "sentiment": {"key": "sentiment", "type": "str"}, + "confidence_scores": {"key": "confidenceScores", "type": "SentimentConfidenceScorePerLabel"}, + "sentences": {"key": "sentences", "type": "[SentenceSentiment]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + sentiment: Union[str, "_models.DocumentSentimentValue"], + confidence_scores: "_models.SentimentConfidenceScorePerLabel", + sentences: List["_models.SentenceSentiment"], + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword sentiment: Predicted sentiment for document (Negative, Neutral, Positive, or Mixed). + Required. Known values are: "positive", "neutral", "negative", and "mixed". + :paramtype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentSentimentValue + :keyword confidence_scores: Document level sentiment confidence scores between 0 and 1 for each + sentiment class. Required. + :paramtype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :keyword sentences: Sentence level sentiment analysis. Required. + :paramtype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentiment] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, **kwargs) + self.sentiment = sentiment + self.confidence_scores = confidence_scores + self.sentences = sentences + + +class SentimentLROResult(AnalyzeTextLROResult): + """SentimentLROResult. + + All required parameters must be populated in order to send to Azure. + + :ivar task_name: + :vartype task_name: str + :ivar last_update_date_time: The last updated time in UTC for the task. Required. + :vartype last_update_date_time: ~datetime.datetime + :ivar status: The status of the task at the mentioned last update time. Required. Known values + are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :vartype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :ivar kind: Enumeration of supported Text Analysis long-running operation task results. + Required. Known values are: "SentimentAnalysisLROResults", "EntityRecognitionLROResults", + "PiiEntityRecognitionLROResults", "KeyPhraseExtractionLROResults", "EntityLinkingLROResults", + "HealthcareLROResults", "ExtractiveSummarizationLROResults", + "CustomEntityRecognitionLROResults", "CustomSingleLabelClassificationLROResults", + "CustomMultiLabelClassificationLROResults", and "AbstractiveSummarizationLROResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponse + """ + + _validation = { + 'last_update_date_time': {'required': True}, + 'status': {'required': True}, + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "task_name": {"key": "taskName", "type": "str"}, + "last_update_date_time": {"key": "lastUpdateDateTime", "type": "iso-8601"}, + "status": {"key": "status", "type": "str"}, + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "SentimentResponse"}, + } + + def __init__( + self, + *, + last_update_date_time: datetime.datetime, + status: Union[str, "_models.State"], + results: "_models.SentimentResponse", + task_name: Optional[str] = None, + **kwargs + ): + """ + :keyword task_name: + :paramtype task_name: str + :keyword last_update_date_time: The last updated time in UTC for the task. Required. + :paramtype last_update_date_time: ~datetime.datetime + :keyword status: The status of the task at the mentioned last update time. Required. Known + values are: "notStarted", "running", "succeeded", "failed", "cancelled", "cancelling", and + "partiallyCompleted". + :paramtype status: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.State + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponse + """ + super().__init__(task_name=task_name, last_update_date_time=last_update_date_time, status=status, **kwargs) + self.kind = 'SentimentAnalysisLROResults' # type: str + self.results = results + + +class SentimentResponse(PreBuiltResult): + """SentimentResponse. + + All required parameters must be populated in order to send to Azure. + + :ivar errors: Errors by document id. Required. + :vartype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :ivar model_version: This field indicates which model is used for scoring. Required. + :vartype model_version: str + :ivar documents: Sentiment analysis per document. Required. + :vartype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponseDocumentsItem] + """ + + _validation = { + 'errors': {'required': True}, + 'model_version': {'required': True}, + 'documents': {'required': True}, + } + + _attribute_map = { + "errors": {"key": "errors", "type": "[InputError]"}, + "statistics": {"key": "statistics", "type": "RequestStatistics"}, + "model_version": {"key": "modelVersion", "type": "str"}, + "documents": {"key": "documents", "type": "[SentimentResponseDocumentsItem]"}, + } + + def __init__( + self, + *, + errors: List["_models.InputError"], + model_version: str, + documents: List["_models.SentimentResponseDocumentsItem"], + statistics: Optional["_models.RequestStatistics"] = None, + **kwargs + ): + """ + :keyword errors: Errors by document id. Required. + :paramtype errors: list[~azure.ai.textanalytics.v2022_10_01_preview.models.InputError] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the request payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.RequestStatistics + :keyword model_version: This field indicates which model is used for scoring. Required. + :paramtype model_version: str + :keyword documents: Sentiment analysis per document. Required. + :paramtype documents: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponseDocumentsItem] + """ + super().__init__(errors=errors, statistics=statistics, model_version=model_version, **kwargs) + self.documents = documents + + +class SentimentResponseDocumentsItem(SentimentDocumentResult, DocumentDetectedLanguage): + """SentimentResponseDocumentsItem. + + All required parameters must be populated in order to send to Azure. + + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar warnings: Warnings encountered while processing document. Required. + :vartype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :ivar statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :vartype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :ivar sentiment: Predicted sentiment for document (Negative, Neutral, Positive, or Mixed). + Required. Known values are: "positive", "neutral", "negative", and "mixed". + :vartype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentSentimentValue + :ivar confidence_scores: Document level sentiment confidence scores between 0 and 1 for each + sentiment class. Required. + :vartype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :ivar sentences: Sentence level sentiment analysis. Required. + :vartype sentences: list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentiment] + """ + + _validation = { + 'id': {'required': True}, + 'warnings': {'required': True}, + 'sentiment': {'required': True}, + 'confidence_scores': {'required': True}, + 'sentences': {'required': True}, + } + + _attribute_map = { + "detected_language": {"key": "detectedLanguage", "type": "DetectedLanguage"}, + "id": {"key": "id", "type": "str"}, + "warnings": {"key": "warnings", "type": "[DocumentWarning]"}, + "statistics": {"key": "statistics", "type": "DocumentStatistics"}, + "sentiment": {"key": "sentiment", "type": "str"}, + "confidence_scores": {"key": "confidenceScores", "type": "SentimentConfidenceScorePerLabel"}, + "sentences": {"key": "sentences", "type": "[SentenceSentiment]"}, + } + + def __init__( + self, + *, + id: str, # pylint: disable=redefined-builtin + warnings: List["_models.DocumentWarning"], + sentiment: Union[str, "_models.DocumentSentimentValue"], + confidence_scores: "_models.SentimentConfidenceScorePerLabel", + sentences: List["_models.SentenceSentiment"], + detected_language: Optional["_models.DetectedLanguage"] = None, + statistics: Optional["_models.DocumentStatistics"] = None, + **kwargs + ): + """ + :keyword detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :paramtype detected_language: + ~azure.ai.textanalytics.v2022_10_01_preview.models.DetectedLanguage + :keyword id: Unique, non-empty document identifier. Required. + :paramtype id: str + :keyword warnings: Warnings encountered while processing document. Required. + :paramtype warnings: list[~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentWarning] + :keyword statistics: if showStats=true was specified in the request this field will contain + information about the document payload. + :paramtype statistics: ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentStatistics + :keyword sentiment: Predicted sentiment for document (Negative, Neutral, Positive, or Mixed). + Required. Known values are: "positive", "neutral", "negative", and "mixed". + :paramtype sentiment: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.DocumentSentimentValue + :keyword confidence_scores: Document level sentiment confidence scores between 0 and 1 for each + sentiment class. Required. + :paramtype confidence_scores: + ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentConfidenceScorePerLabel + :keyword sentences: Sentence level sentiment analysis. Required. + :paramtype sentences: + list[~azure.ai.textanalytics.v2022_10_01_preview.models.SentenceSentiment] + """ + super().__init__(id=id, warnings=warnings, statistics=statistics, sentiment=sentiment, confidence_scores=confidence_scores, sentences=sentences, detected_language=detected_language, **kwargs) + self.detected_language = detected_language + self.id = id + self.warnings = warnings + self.statistics = statistics + self.sentiment = sentiment + self.confidence_scores = confidence_scores + self.sentences = sentences + + +class SentimentTaskResult(AnalyzeTextTaskResult): + """SentimentTaskResult. + + All required parameters must be populated in order to send to Azure. + + :ivar kind: Enumeration of supported Text Analysis task results. Required. Known values are: + "SentimentAnalysisResults", "EntityRecognitionResults", "PiiEntityRecognitionResults", + "KeyPhraseExtractionResults", "LanguageDetectionResults", "EntityLinkingResults", and + "DynamicClassificationResults". + :vartype kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResultsKind + :ivar results: Required. + :vartype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponse + """ + + _validation = { + 'kind': {'required': True}, + 'results': {'required': True}, + } + + _attribute_map = { + "kind": {"key": "kind", "type": "str"}, + "results": {"key": "results", "type": "SentimentResponse"}, + } + + def __init__( + self, + *, + results: "_models.SentimentResponse", + **kwargs + ): + """ + :keyword results: Required. + :paramtype results: ~azure.ai.textanalytics.v2022_10_01_preview.models.SentimentResponse + """ + super().__init__(**kwargs) + self.kind = 'SentimentAnalysisResults' # type: str + self.results = results + + +class SpeedResolution(BaseResolution, QuantityResolution): + """Represents the speed entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The speed Unit of measurement. Required. Known values are: "Unspecified", + "MetersPerSecond", "KilometersPerHour", "KilometersPerMinute", "KilometersPerSecond", + "MilesPerHour", "Knot", "FootPerSecond", "FootPerMinute", "YardsPerMinute", "YardsPerSecond", + "MetersPerMillisecond", "CentimetersPerMillisecond", and "KilometersPerMillisecond". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.SpeedUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.SpeedUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The speed Unit of measurement. Required. Known values are: "Unspecified", + "MetersPerSecond", "KilometersPerHour", "KilometersPerMinute", "KilometersPerSecond", + "MilesPerHour", "Knot", "FootPerSecond", "FootPerMinute", "YardsPerMinute", "YardsPerSecond", + "MetersPerMillisecond", "CentimetersPerMillisecond", and "KilometersPerMillisecond". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.SpeedUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'SpeedResolution' # type: str + self.unit = unit + + +class SummaryContext(_serialization.Model): + """The context of the summary. + + All required parameters must be populated in order to send to Azure. + + :ivar offset: Start position for the context. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :vartype offset: int + :ivar length: The length of the context. Use of different 'stringIndexType' values can affect + the length returned. Required. + :vartype length: int + """ + + _validation = { + 'offset': {'required': True}, + 'length': {'required': True}, + } + + _attribute_map = { + "offset": {"key": "offset", "type": "int"}, + "length": {"key": "length", "type": "int"}, + } + + def __init__( + self, + *, + offset: int, + length: int, + **kwargs + ): + """ + :keyword offset: Start position for the context. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :paramtype offset: int + :keyword length: The length of the context. Use of different 'stringIndexType' values can + affect the length returned. Required. + :paramtype length: int + """ + super().__init__(**kwargs) + self.offset = offset + self.length = length + + +class TargetConfidenceScoreLabel(_serialization.Model): + """Represents the confidence scores across all sentiment classes: positive and negative. + + All required parameters must be populated in order to send to Azure. + + :ivar positive: Confidence score for positive sentiment. Required. + :vartype positive: float + :ivar negative: Confidence score for negative sentiment. Required. + :vartype negative: float + """ + + _validation = { + 'positive': {'required': True}, + 'negative': {'required': True}, + } + + _attribute_map = { + "positive": {"key": "positive", "type": "float"}, + "negative": {"key": "negative", "type": "float"}, + } + + def __init__( + self, + *, + positive: float, + negative: float, + **kwargs + ): + """ + :keyword positive: Confidence score for positive sentiment. Required. + :paramtype positive: float + :keyword negative: Confidence score for negative sentiment. Required. + :paramtype negative: float + """ + super().__init__(**kwargs) + self.positive = positive + self.negative = negative + + +class TargetRelation(_serialization.Model): + """TargetRelation. + + All required parameters must be populated in order to send to Azure. + + :ivar relation_type: The type related to the target. Required. Known values are: "assessment" + and "target". + :vartype relation_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetRelationType + :ivar ref: The JSON pointer indicating the linked object. Required. + :vartype ref: str + """ + + _validation = { + 'relation_type': {'required': True}, + 'ref': {'required': True}, + } + + _attribute_map = { + "relation_type": {"key": "relationType", "type": "str"}, + "ref": {"key": "ref", "type": "str"}, + } + + def __init__( + self, + *, + relation_type: Union[str, "_models.TargetRelationType"], + ref: str, + **kwargs + ): + """ + :keyword relation_type: The type related to the target. Required. Known values are: + "assessment" and "target". + :paramtype relation_type: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.TargetRelationType + :keyword ref: The JSON pointer indicating the linked object. Required. + :paramtype ref: str + """ + super().__init__(**kwargs) + self.relation_type = relation_type + self.ref = ref + + +class TasksStateTasks(_serialization.Model): + """TasksStateTasks. + + All required parameters must be populated in order to send to Azure. + + :ivar completed: Required. + :vartype completed: int + :ivar failed: Required. + :vartype failed: int + :ivar in_progress: Required. + :vartype in_progress: int + :ivar total: Required. + :vartype total: int + :ivar items: + :vartype items: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResult] + """ + + _validation = { + 'completed': {'required': True}, + 'failed': {'required': True}, + 'in_progress': {'required': True}, + 'total': {'required': True}, + } + + _attribute_map = { + "completed": {"key": "completed", "type": "int"}, + "failed": {"key": "failed", "type": "int"}, + "in_progress": {"key": "inProgress", "type": "int"}, + "total": {"key": "total", "type": "int"}, + "items": {"key": "items", "type": "[AnalyzeTextLROResult]"}, + } + + def __init__( + self, + *, + completed: int, + failed: int, + in_progress: int, + total: int, + items: Optional[List["_models.AnalyzeTextLROResult"]] = None, + **kwargs + ): + """ + :keyword completed: Required. + :paramtype completed: int + :keyword failed: Required. + :paramtype failed: int + :keyword in_progress: Required. + :paramtype in_progress: int + :keyword total: Required. + :paramtype total: int + :keyword items: + :paramtype items: list[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextLROResult] + """ + super().__init__(**kwargs) + self.completed = completed + self.failed = failed + self.in_progress = in_progress + self.total = total + self.items = items + + +class TemperatureResolution(BaseResolution, QuantityResolution): + """Represents the temperature entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The temperature Unit of measurement. Required. Known values are: "Unspecified", + "Fahrenheit", "Kelvin", "Rankine", and "Celsius". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemperatureUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.TemperatureUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The temperature Unit of measurement. Required. Known values are: "Unspecified", + "Fahrenheit", "Kelvin", "Rankine", and "Celsius". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemperatureUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'TemperatureResolution' # type: str + self.unit = unit + + +class TemporalSpanResolution(BaseResolution): + """represents the resolution of a date and/or time span. + + All required parameters must be populated in order to send to Azure. + + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar begin: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + :vartype begin: str + :ivar end: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + :vartype end: str + :ivar duration: An optional duration value formatted based on the ISO 8601 + (https://en.wikipedia.org/wiki/ISO_8601#Durations). + :vartype duration: str + :ivar modifier: An optional modifier of a date/time instance. Known values are: "AfterApprox", + "Before", "BeforeStart", "Approx", "ReferenceUndefined", "SinceEnd", "AfterMid", "Start", + "After", "BeforeEnd", "Until", "End", "Less", "Since", "AfterStart", "BeforeApprox", "Mid", and + "More". + :vartype modifier: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemporalModifier + """ + + _validation = { + 'resolution_kind': {'required': True}, + } + + _attribute_map = { + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "begin": {"key": "begin", "type": "str"}, + "end": {"key": "end", "type": "str"}, + "duration": {"key": "duration", "type": "str"}, + "modifier": {"key": "modifier", "type": "str"}, + } + + def __init__( + self, + *, + begin: Optional[str] = None, + end: Optional[str] = None, + duration: Optional[str] = None, + modifier: Optional[Union[str, "_models.TemporalModifier"]] = None, + **kwargs + ): + """ + :keyword begin: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + :paramtype begin: str + :keyword end: An extended ISO 8601 date/time representation as described in + (https://github.com/Microsoft/Recognizers-Text/blob/master/Patterns/English/English-DateTime.yaml). + :paramtype end: str + :keyword duration: An optional duration value formatted based on the ISO 8601 + (https://en.wikipedia.org/wiki/ISO_8601#Durations). + :paramtype duration: str + :keyword modifier: An optional modifier of a date/time instance. Known values are: + "AfterApprox", "Before", "BeforeStart", "Approx", "ReferenceUndefined", "SinceEnd", "AfterMid", + "Start", "After", "BeforeEnd", "Until", "End", "Less", "Since", "AfterStart", "BeforeApprox", + "Mid", and "More". + :paramtype modifier: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.TemporalModifier + """ + super().__init__(**kwargs) + self.resolution_kind = 'TemporalSpanResolution' # type: str + self.begin = begin + self.end = end + self.duration = duration + self.modifier = modifier + + +class VolumeResolution(BaseResolution, QuantityResolution): + """Represents the volume entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The Volume Unit of measurement. Required. Known values are: "Unspecified", + "CubicMeter", "CubicCentimeter", "CubicMillimeter", "Hectoliter", "Decaliter", "Liter", + "Centiliter", "Milliliter", "CubicYard", "CubicInch", "CubicFoot", "CubicMile", "FluidOunce", + "Teaspoon", "Tablespoon", "Pint", "Quart", "Cup", "Gill", "Pinch", "FluidDram", "Barrel", + "Minim", "Cord", "Peck", "Bushel", and "Hogshead". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.VolumeUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.VolumeUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The Volume Unit of measurement. Required. Known values are: "Unspecified", + "CubicMeter", "CubicCentimeter", "CubicMillimeter", "Hectoliter", "Decaliter", "Liter", + "Centiliter", "Milliliter", "CubicYard", "CubicInch", "CubicFoot", "CubicMile", "FluidOunce", + "Teaspoon", "Tablespoon", "Pint", "Quart", "Cup", "Gill", "Pinch", "FluidDram", "Barrel", + "Minim", "Cord", "Peck", "Bushel", and "Hogshead". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.VolumeUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'VolumeResolution' # type: str + self.unit = unit + + +class WeightResolution(BaseResolution, QuantityResolution): + """Represents the weight entity resolution model. + + All required parameters must be populated in order to send to Azure. + + :ivar value: The numeric value that the extracted text denotes. Required. + :vartype value: float + :ivar resolution_kind: The entity resolution object kind. Required. Known values are: + "BooleanResolution", "DateTimeResolution", "NumberResolution", "OrdinalResolution", + "SpeedResolution", "WeightResolution", "LengthResolution", "VolumeResolution", + "AreaResolution", "AgeResolution", "InformationResolution", "TemperatureResolution", + "CurrencyResolution", "NumericRangeResolution", and "TemporalSpanResolution". + :vartype resolution_kind: str or + ~azure.ai.textanalytics.v2022_10_01_preview.models.ResolutionKind + :ivar unit: The weight Unit of measurement. Required. Known values are: "Unspecified", + "Kilogram", "Gram", "Milligram", "Gallon", "MetricTon", "Ton", "Pound", "Ounce", "Grain", + "PennyWeight", "LongTonBritish", "ShortTonUS", "ShortHundredWeightUS", "Stone", and "Dram". + :vartype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.WeightUnit + """ + + _validation = { + 'value': {'required': True}, + 'resolution_kind': {'required': True}, + 'unit': {'required': True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "float"}, + "resolution_kind": {"key": "resolutionKind", "type": "str"}, + "unit": {"key": "unit", "type": "str"}, + } + + def __init__( + self, + *, + value: float, + unit: Union[str, "_models.WeightUnit"], + **kwargs + ): + """ + :keyword value: The numeric value that the extracted text denotes. Required. + :paramtype value: float + :keyword unit: The weight Unit of measurement. Required. Known values are: "Unspecified", + "Kilogram", "Gram", "Milligram", "Gallon", "MetricTon", "Ton", "Pound", "Ounce", "Grain", + "PennyWeight", "LongTonBritish", "ShortTonUS", "ShortHundredWeightUS", "Stone", and "Dram". + :paramtype unit: str or ~azure.ai.textanalytics.v2022_10_01_preview.models.WeightUnit + """ + super().__init__(value=value, **kwargs) + self.value = value + self.resolution_kind = 'WeightResolution' # type: str + self.unit = unit diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_patch.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_patch.py new file mode 100644 index 000000000000..85b1e6479491 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_patch.py @@ -0,0 +1,72 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List +from ._models_py3 import ( + AgeResolution as GeneratedAgeResolution, + AreaResolution as GeneratedAreaResolution, + BooleanResolution as GeneratedBooleanResolution, + CurrencyResolution as GeneratedCurrencyResolution, + DateTimeResolution as GeneratedDateTimeResolution, + InformationResolution as GeneratedInformationResolution, + LengthResolution as GeneratedLengthResolution, + NumberResolution as GeneratedNumberResolution, + NumericRangeResolution as GeneratedNumericRangeResolution, + OrdinalResolution as GeneratedOrdinalResolution, + SpeedResolution as GeneratedSpeedResolution, + TemperatureResolution as GeneratedTemperatureResolution, + TemporalSpanResolution as GeneratedTemporalSpanResolution, + VolumeResolution as GeneratedVolumeResolution, + WeightResolution as GeneratedWeightResolution, +) +from ...._dict_mixin import DictMixin + + +# add dict-like capabilities that all other exposed models have in the TA library +class AgeResolution(GeneratedAgeResolution, DictMixin): ... +class AreaResolution(GeneratedAreaResolution, DictMixin): ... +class BooleanResolution(GeneratedBooleanResolution, DictMixin): ... +class CurrencyResolution(GeneratedCurrencyResolution, DictMixin): ... +class DateTimeResolution(GeneratedDateTimeResolution, DictMixin): ... +class InformationResolution(GeneratedInformationResolution, DictMixin): ... +class LengthResolution(GeneratedLengthResolution, DictMixin): ... +class NumberResolution(GeneratedNumberResolution, DictMixin): ... +class NumericRangeResolution(GeneratedNumericRangeResolution, DictMixin): ... +class OrdinalResolution(GeneratedOrdinalResolution, DictMixin): ... +class SpeedResolution(GeneratedSpeedResolution, DictMixin): ... +class TemperatureResolution(GeneratedTemperatureResolution, DictMixin): ... +class TemporalSpanResolution(GeneratedTemporalSpanResolution, DictMixin): ... +class VolumeResolution(GeneratedVolumeResolution, DictMixin): ... +class WeightResolution(GeneratedWeightResolution, DictMixin): ... + + +__all__: List[str] = [ + "AgeResolution", + "AreaResolution", + "BooleanResolution", + "CurrencyResolution", + "DateTimeResolution", + "InformationResolution", + "LengthResolution", + "NumberResolution", + "NumericRangeResolution", + "OrdinalResolution", + "SpeedResolution", + "TemperatureResolution", + "TemporalSpanResolution", + "VolumeResolution", + "WeightResolution", +] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_text_analytics_client_enums.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_text_analytics_client_enums.py new file mode 100644 index 000000000000..1a534149631e --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/models/_text_analytics_client_enums.py @@ -0,0 +1,743 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum +from azure.core import CaseInsensitiveEnumMeta + + +class AgeUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The Age Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + YEAR = "Year" + MONTH = "Month" + WEEK = "Week" + DAY = "Day" + +class AnalyzeTextLROResultsKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enumeration of supported Text Analysis long-running operation task results. + """ + + SENTIMENT_ANALYSIS_LRO_RESULTS = "SentimentAnalysisLROResults" + ENTITY_RECOGNITION_LRO_RESULTS = "EntityRecognitionLROResults" + PII_ENTITY_RECOGNITION_LRO_RESULTS = "PiiEntityRecognitionLROResults" + KEY_PHRASE_EXTRACTION_LRO_RESULTS = "KeyPhraseExtractionLROResults" + ENTITY_LINKING_LRO_RESULTS = "EntityLinkingLROResults" + HEALTHCARE_LRO_RESULTS = "HealthcareLROResults" + EXTRACTIVE_SUMMARIZATION_LRO_RESULTS = "ExtractiveSummarizationLROResults" + CUSTOM_ENTITY_RECOGNITION_LRO_RESULTS = "CustomEntityRecognitionLROResults" + CUSTOM_SINGLE_LABEL_CLASSIFICATION_LRO_RESULTS = "CustomSingleLabelClassificationLROResults" + CUSTOM_MULTI_LABEL_CLASSIFICATION_LRO_RESULTS = "CustomMultiLabelClassificationLROResults" + ABSTRACTIVE_SUMMARIZATION_LRO_RESULTS = "AbstractiveSummarizationLROResults" + +class AnalyzeTextLROTaskKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enumeration of supported long-running Text Analysis tasks. + """ + + SENTIMENT_ANALYSIS = "SentimentAnalysis" + ENTITY_RECOGNITION = "EntityRecognition" + PII_ENTITY_RECOGNITION = "PiiEntityRecognition" + KEY_PHRASE_EXTRACTION = "KeyPhraseExtraction" + ENTITY_LINKING = "EntityLinking" + HEALTHCARE = "Healthcare" + EXTRACTIVE_SUMMARIZATION = "ExtractiveSummarization" + CUSTOM_ENTITY_RECOGNITION = "CustomEntityRecognition" + CUSTOM_SINGLE_LABEL_CLASSIFICATION = "CustomSingleLabelClassification" + CUSTOM_MULTI_LABEL_CLASSIFICATION = "CustomMultiLabelClassification" + ABSTRACTIVE_SUMMARIZATION = "AbstractiveSummarization" + +class AnalyzeTextTaskKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enumeration of supported Text Analysis tasks. + """ + + SENTIMENT_ANALYSIS = "SentimentAnalysis" + ENTITY_RECOGNITION = "EntityRecognition" + PII_ENTITY_RECOGNITION = "PiiEntityRecognition" + KEY_PHRASE_EXTRACTION = "KeyPhraseExtraction" + LANGUAGE_DETECTION = "LanguageDetection" + ENTITY_LINKING = "EntityLinking" + DYNAMIC_CLASSIFICATION = "DynamicClassification" + +class AnalyzeTextTaskResultsKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enumeration of supported Text Analysis task results. + """ + + SENTIMENT_ANALYSIS_RESULTS = "SentimentAnalysisResults" + ENTITY_RECOGNITION_RESULTS = "EntityRecognitionResults" + PII_ENTITY_RECOGNITION_RESULTS = "PiiEntityRecognitionResults" + KEY_PHRASE_EXTRACTION_RESULTS = "KeyPhraseExtractionResults" + LANGUAGE_DETECTION_RESULTS = "LanguageDetectionResults" + ENTITY_LINKING_RESULTS = "EntityLinkingResults" + DYNAMIC_CLASSIFICATION_RESULTS = "DynamicClassificationResults" + +class AreaUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The area Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + SQUARE_KILOMETER = "SquareKilometer" + SQUARE_HECTOMETER = "SquareHectometer" + SQUARE_DECAMETER = "SquareDecameter" + SQUARE_DECIMETER = "SquareDecimeter" + SQUARE_METER = "SquareMeter" + SQUARE_CENTIMETER = "SquareCentimeter" + SQUARE_MILLIMETER = "SquareMillimeter" + SQUARE_INCH = "SquareInch" + SQUARE_FOOT = "SquareFoot" + SQUARE_MILE = "SquareMile" + SQUARE_YARD = "SquareYard" + ACRE = "Acre" + +class Association(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Describes if the entity is the subject of the text or if it describes someone else. + """ + + SUBJECT = "subject" + OTHER = "other" + +class Certainty(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Describes the entities certainty and polarity. + """ + + POSITIVE = "positive" + POSITIVE_POSSIBLE = "positivePossible" + NEUTRAL_POSSIBLE = "neutralPossible" + NEGATIVE_POSSIBLE = "negativePossible" + NEGATIVE = "negative" + +class ClassificationType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Specifies either one or multiple categories per document. Defaults to multi classification + which may return more than one class for each document. + """ + + SINGLE = "Single" + MULTI = "Multi" + +class Conditionality(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Describes any conditionality on the entity. + """ + + HYPOTHETICAL = "hypothetical" + CONDITIONAL = "conditional" + +class DateTimeSubKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The DateTime SubKind. + """ + + TIME = "Time" + DATE = "Date" + DATE_TIME = "DateTime" + DURATION = "Duration" + SET = "Set" + +class DocumentSentimentValue(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Predicted sentiment for document (Negative, Neutral, Positive, or Mixed). + """ + + POSITIVE = "positive" + NEUTRAL = "neutral" + NEGATIVE = "negative" + MIXED = "mixed" + +class ErrorCode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Human-readable error code. + """ + + INVALID_REQUEST = "InvalidRequest" + INVALID_ARGUMENT = "InvalidArgument" + UNAUTHORIZED = "Unauthorized" + FORBIDDEN = "Forbidden" + NOT_FOUND = "NotFound" + PROJECT_NOT_FOUND = "ProjectNotFound" + OPERATION_NOT_FOUND = "OperationNotFound" + AZURE_COGNITIVE_SEARCH_NOT_FOUND = "AzureCognitiveSearchNotFound" + AZURE_COGNITIVE_SEARCH_INDEX_NOT_FOUND = "AzureCognitiveSearchIndexNotFound" + TOO_MANY_REQUESTS = "TooManyRequests" + AZURE_COGNITIVE_SEARCH_THROTTLING = "AzureCognitiveSearchThrottling" + AZURE_COGNITIVE_SEARCH_INDEX_LIMIT_REACHED = "AzureCognitiveSearchIndexLimitReached" + INTERNAL_SERVER_ERROR = "InternalServerError" + SERVICE_UNAVAILABLE = "ServiceUnavailable" + TIMEOUT = "Timeout" + QUOTA_EXCEEDED = "QuotaExceeded" + CONFLICT = "Conflict" + WARNING = "Warning" + +class ExtractiveSummarizationSortingCriteria(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The sorting criteria to use for the results of Extractive Summarization. + """ + + #: Indicates that results should be sorted in order of appearance in the text. + OFFSET = "Offset" + #: Indicates that results should be sorted in order of importance (i.e. rank score) according to + #: the model. + RANK = "Rank" + +class FhirVersion(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The FHIR Spec version that the result will use to format the fhirBundle. For additional + information see https://www.hl7.org/fhir/overview.html. + """ + + FOUR0_1 = "4.0.1" + +class HealthcareDocumentType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Document type that can be provided as input for Fhir Documents. Expect to have fhirVersion + provided when used. Behavior of using None enum is the same as not using the documentType + parameter. + """ + + NONE = "None" + CLINICAL_TRIAL = "ClinicalTrial" + DISCHARGE_SUMMARY = "DischargeSummary" + PROGRESS_NOTE = "ProgressNote" + HISTORY_AND_PHYSICAL = "HistoryAndPhysical" + CONSULT = "Consult" + IMAGING = "Imaging" + PATHOLOGY = "Pathology" + PROCEDURE_NOTE = "ProcedureNote" + +class HealthcareEntityCategory(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Healthcare Entity Category. + """ + + BODY_STRUCTURE = "BodyStructure" + AGE = "Age" + GENDER = "Gender" + EXAMINATION_NAME = "ExaminationName" + DATE = "Date" + DIRECTION = "Direction" + FREQUENCY = "Frequency" + MEASUREMENT_VALUE = "MeasurementValue" + MEASUREMENT_UNIT = "MeasurementUnit" + RELATIONAL_OPERATOR = "RelationalOperator" + TIME = "Time" + GENE_OR_PROTEIN = "GeneOrProtein" + VARIANT = "Variant" + ADMINISTRATIVE_EVENT = "AdministrativeEvent" + CARE_ENVIRONMENT = "CareEnvironment" + HEALTHCARE_PROFESSION = "HealthcareProfession" + DIAGNOSIS = "Diagnosis" + SYMPTOM_OR_SIGN = "SymptomOrSign" + CONDITION_QUALIFIER = "ConditionQualifier" + MEDICATION_CLASS = "MedicationClass" + MEDICATION_NAME = "MedicationName" + DOSAGE = "Dosage" + MEDICATION_FORM = "MedicationForm" + MEDICATION_ROUTE = "MedicationRoute" + FAMILY_RELATION = "FamilyRelation" + TREATMENT_NAME = "TreatmentName" + +class InformationUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The information (data) Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + BIT = "Bit" + KILOBIT = "Kilobit" + MEGABIT = "Megabit" + GIGABIT = "Gigabit" + TERABIT = "Terabit" + PETABIT = "Petabit" + BYTE = "Byte" + KILOBYTE = "Kilobyte" + MEGABYTE = "Megabyte" + GIGABYTE = "Gigabyte" + TERABYTE = "Terabyte" + PETABYTE = "Petabyte" + +class InnerErrorCode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Human-readable error code. + """ + + INVALID_REQUEST = "InvalidRequest" + INVALID_PARAMETER_VALUE = "InvalidParameterValue" + KNOWLEDGE_BASE_NOT_FOUND = "KnowledgeBaseNotFound" + AZURE_COGNITIVE_SEARCH_NOT_FOUND = "AzureCognitiveSearchNotFound" + AZURE_COGNITIVE_SEARCH_THROTTLING = "AzureCognitiveSearchThrottling" + EXTRACTION_FAILURE = "ExtractionFailure" + INVALID_REQUEST_BODY_FORMAT = "InvalidRequestBodyFormat" + EMPTY_REQUEST = "EmptyRequest" + MISSING_INPUT_DOCUMENTS = "MissingInputDocuments" + INVALID_DOCUMENT = "InvalidDocument" + MODEL_VERSION_INCORRECT = "ModelVersionIncorrect" + INVALID_DOCUMENT_BATCH = "InvalidDocumentBatch" + UNSUPPORTED_LANGUAGE_CODE = "UnsupportedLanguageCode" + INVALID_COUNTRY_HINT = "InvalidCountryHint" + +class LengthUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The length Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + KILOMETER = "Kilometer" + HECTOMETER = "Hectometer" + DECAMETER = "Decameter" + METER = "Meter" + DECIMETER = "Decimeter" + CENTIMETER = "Centimeter" + MILLIMETER = "Millimeter" + MICROMETER = "Micrometer" + NANOMETER = "Nanometer" + PICOMETER = "Picometer" + MILE = "Mile" + YARD = "Yard" + INCH = "Inch" + FOOT = "Foot" + LIGHT_YEAR = "LightYear" + PT = "Pt" + +class NumberKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of the extracted number entity. + """ + + INTEGER = "Integer" + DECIMAL = "Decimal" + POWER = "Power" + FRACTION = "Fraction" + PERCENT = "Percent" + UNSPECIFIED = "Unspecified" + +class PhraseControlStrategy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The strategy to use in phrase control. + """ + + #: The model will have higher probability to select the target phrase in the summary if there are + #: multiple alternates. + ENCOURAGE = "encourage" + #: The model will have lower probability to select the target phrase in the summary if there are + #: multiple alternates. + DISCOURAGE = "discourage" + #: The model will avoid to select the target phrase in the summary. + DISALLOW = "disallow" + +class PiiCategory(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """PiiCategory. + """ + + ABA_ROUTING_NUMBER = "ABARoutingNumber" + AR_NATIONAL_IDENTITY_NUMBER = "ARNationalIdentityNumber" + AU_BANK_ACCOUNT_NUMBER = "AUBankAccountNumber" + AU_DRIVERS_LICENSE_NUMBER = "AUDriversLicenseNumber" + AU_MEDICAL_ACCOUNT_NUMBER = "AUMedicalAccountNumber" + AU_PASSPORT_NUMBER = "AUPassportNumber" + AU_TAX_FILE_NUMBER = "AUTaxFileNumber" + AU_BUSINESS_NUMBER = "AUBusinessNumber" + AU_COMPANY_NUMBER = "AUCompanyNumber" + AT_IDENTITY_CARD = "ATIdentityCard" + AT_TAX_IDENTIFICATION_NUMBER = "ATTaxIdentificationNumber" + AT_VALUE_ADDED_TAX_NUMBER = "ATValueAddedTaxNumber" + AZURE_DOCUMENT_DB_AUTH_KEY = "AzureDocumentDBAuthKey" + AZURE_IAAS_DATABASE_CONNECTION_AND_SQL_STRING = "AzureIAASDatabaseConnectionAndSQLString" + AZURE_IO_T_CONNECTION_STRING = "AzureIoTConnectionString" + AZURE_PUBLISH_SETTING_PASSWORD = "AzurePublishSettingPassword" + AZURE_REDIS_CACHE_STRING = "AzureRedisCacheString" + AZURE_SAS = "AzureSAS" + AZURE_SERVICE_BUS_STRING = "AzureServiceBusString" + AZURE_STORAGE_ACCOUNT_KEY = "AzureStorageAccountKey" + AZURE_STORAGE_ACCOUNT_GENERIC = "AzureStorageAccountGeneric" + BE_NATIONAL_NUMBER = "BENationalNumber" + BE_NATIONAL_NUMBER_V2 = "BENationalNumberV2" + BE_VALUE_ADDED_TAX_NUMBER = "BEValueAddedTaxNumber" + BRCPF_NUMBER = "BRCPFNumber" + BR_LEGAL_ENTITY_NUMBER = "BRLegalEntityNumber" + BR_NATIONAL_IDRG = "BRNationalIDRG" + BG_UNIFORM_CIVIL_NUMBER = "BGUniformCivilNumber" + CA_BANK_ACCOUNT_NUMBER = "CABankAccountNumber" + CA_DRIVERS_LICENSE_NUMBER = "CADriversLicenseNumber" + CA_HEALTH_SERVICE_NUMBER = "CAHealthServiceNumber" + CA_PASSPORT_NUMBER = "CAPassportNumber" + CA_PERSONAL_HEALTH_IDENTIFICATION = "CAPersonalHealthIdentification" + CA_SOCIAL_INSURANCE_NUMBER = "CASocialInsuranceNumber" + CL_IDENTITY_CARD_NUMBER = "CLIdentityCardNumber" + CN_RESIDENT_IDENTITY_CARD_NUMBER = "CNResidentIdentityCardNumber" + CREDIT_CARD_NUMBER = "CreditCardNumber" + HR_IDENTITY_CARD_NUMBER = "HRIdentityCardNumber" + HR_NATIONAL_ID_NUMBER = "HRNationalIDNumber" + HR_PERSONAL_IDENTIFICATION_NUMBER = "HRPersonalIdentificationNumber" + HR_PERSONAL_IDENTIFICATION_OIB_NUMBER_V2 = "HRPersonalIdentificationOIBNumberV2" + CY_IDENTITY_CARD = "CYIdentityCard" + CY_TAX_IDENTIFICATION_NUMBER = "CYTaxIdentificationNumber" + CZ_PERSONAL_IDENTITY_NUMBER = "CZPersonalIdentityNumber" + CZ_PERSONAL_IDENTITY_V2 = "CZPersonalIdentityV2" + DK_PERSONAL_IDENTIFICATION_NUMBER = "DKPersonalIdentificationNumber" + DK_PERSONAL_IDENTIFICATION_V2 = "DKPersonalIdentificationV2" + DRUG_ENFORCEMENT_AGENCY_NUMBER = "DrugEnforcementAgencyNumber" + EE_PERSONAL_IDENTIFICATION_CODE = "EEPersonalIdentificationCode" + EU_DEBIT_CARD_NUMBER = "EUDebitCardNumber" + EU_DRIVERS_LICENSE_NUMBER = "EUDriversLicenseNumber" + EUGPS_COORDINATES = "EUGPSCoordinates" + EU_NATIONAL_IDENTIFICATION_NUMBER = "EUNationalIdentificationNumber" + EU_PASSPORT_NUMBER = "EUPassportNumber" + EU_SOCIAL_SECURITY_NUMBER = "EUSocialSecurityNumber" + EU_TAX_IDENTIFICATION_NUMBER = "EUTaxIdentificationNumber" + FI_EUROPEAN_HEALTH_NUMBER = "FIEuropeanHealthNumber" + FI_NATIONAL_ID = "FINationalID" + FI_NATIONAL_IDV2 = "FINationalIDV2" + FI_PASSPORT_NUMBER = "FIPassportNumber" + FR_DRIVERS_LICENSE_NUMBER = "FRDriversLicenseNumber" + FR_HEALTH_INSURANCE_NUMBER = "FRHealthInsuranceNumber" + FR_NATIONAL_ID = "FRNationalID" + FR_PASSPORT_NUMBER = "FRPassportNumber" + FR_SOCIAL_SECURITY_NUMBER = "FRSocialSecurityNumber" + FR_TAX_IDENTIFICATION_NUMBER = "FRTaxIdentificationNumber" + FR_VALUE_ADDED_TAX_NUMBER = "FRValueAddedTaxNumber" + DE_DRIVERS_LICENSE_NUMBER = "DEDriversLicenseNumber" + DE_PASSPORT_NUMBER = "DEPassportNumber" + DE_IDENTITY_CARD_NUMBER = "DEIdentityCardNumber" + DE_TAX_IDENTIFICATION_NUMBER = "DETaxIdentificationNumber" + DE_VALUE_ADDED_NUMBER = "DEValueAddedNumber" + GR_NATIONAL_ID_CARD = "GRNationalIDCard" + GR_NATIONAL_IDV2 = "GRNationalIDV2" + GR_TAX_IDENTIFICATION_NUMBER = "GRTaxIdentificationNumber" + HK_IDENTITY_CARD_NUMBER = "HKIdentityCardNumber" + HU_VALUE_ADDED_NUMBER = "HUValueAddedNumber" + HU_PERSONAL_IDENTIFICATION_NUMBER = "HUPersonalIdentificationNumber" + HU_TAX_IDENTIFICATION_NUMBER = "HUTaxIdentificationNumber" + IN_PERMANENT_ACCOUNT = "INPermanentAccount" + IN_UNIQUE_IDENTIFICATION_NUMBER = "INUniqueIdentificationNumber" + ID_IDENTITY_CARD_NUMBER = "IDIdentityCardNumber" + INTERNATIONAL_BANKING_ACCOUNT_NUMBER = "InternationalBankingAccountNumber" + IE_PERSONAL_PUBLIC_SERVICE_NUMBER = "IEPersonalPublicServiceNumber" + IE_PERSONAL_PUBLIC_SERVICE_NUMBER_V2 = "IEPersonalPublicServiceNumberV2" + IL_BANK_ACCOUNT_NUMBER = "ILBankAccountNumber" + IL_NATIONAL_ID = "ILNationalID" + IT_DRIVERS_LICENSE_NUMBER = "ITDriversLicenseNumber" + IT_FISCAL_CODE = "ITFiscalCode" + IT_VALUE_ADDED_TAX_NUMBER = "ITValueAddedTaxNumber" + JP_BANK_ACCOUNT_NUMBER = "JPBankAccountNumber" + JP_DRIVERS_LICENSE_NUMBER = "JPDriversLicenseNumber" + JP_PASSPORT_NUMBER = "JPPassportNumber" + JP_RESIDENT_REGISTRATION_NUMBER = "JPResidentRegistrationNumber" + JP_SOCIAL_INSURANCE_NUMBER = "JPSocialInsuranceNumber" + JP_MY_NUMBER_CORPORATE = "JPMyNumberCorporate" + JP_MY_NUMBER_PERSONAL = "JPMyNumberPersonal" + JP_RESIDENCE_CARD_NUMBER = "JPResidenceCardNumber" + LV_PERSONAL_CODE = "LVPersonalCode" + LT_PERSONAL_CODE = "LTPersonalCode" + LU_NATIONAL_IDENTIFICATION_NUMBER_NATURAL = "LUNationalIdentificationNumberNatural" + LU_NATIONAL_IDENTIFICATION_NUMBER_NON_NATURAL = "LUNationalIdentificationNumberNonNatural" + MY_IDENTITY_CARD_NUMBER = "MYIdentityCardNumber" + MT_IDENTITY_CARD_NUMBER = "MTIdentityCardNumber" + MT_TAX_ID_NUMBER = "MTTaxIDNumber" + NL_CITIZENS_SERVICE_NUMBER = "NLCitizensServiceNumber" + NL_CITIZENS_SERVICE_NUMBER_V2 = "NLCitizensServiceNumberV2" + NL_TAX_IDENTIFICATION_NUMBER = "NLTaxIdentificationNumber" + NL_VALUE_ADDED_TAX_NUMBER = "NLValueAddedTaxNumber" + NZ_BANK_ACCOUNT_NUMBER = "NZBankAccountNumber" + NZ_DRIVERS_LICENSE_NUMBER = "NZDriversLicenseNumber" + NZ_INLAND_REVENUE_NUMBER = "NZInlandRevenueNumber" + NZ_MINISTRY_OF_HEALTH_NUMBER = "NZMinistryOfHealthNumber" + NZ_SOCIAL_WELFARE_NUMBER = "NZSocialWelfareNumber" + NO_IDENTITY_NUMBER = "NOIdentityNumber" + PH_UNIFIED_MULTI_PURPOSE_ID_NUMBER = "PHUnifiedMultiPurposeIDNumber" + PL_IDENTITY_CARD = "PLIdentityCard" + PL_NATIONAL_ID = "PLNationalID" + PL_NATIONAL_IDV2 = "PLNationalIDV2" + PL_PASSPORT_NUMBER = "PLPassportNumber" + PL_TAX_IDENTIFICATION_NUMBER = "PLTaxIdentificationNumber" + PLREGON_NUMBER = "PLREGONNumber" + PT_CITIZEN_CARD_NUMBER = "PTCitizenCardNumber" + PT_CITIZEN_CARD_NUMBER_V2 = "PTCitizenCardNumberV2" + PT_TAX_IDENTIFICATION_NUMBER = "PTTaxIdentificationNumber" + RO_PERSONAL_NUMERICAL_CODE = "ROPersonalNumericalCode" + RU_PASSPORT_NUMBER_DOMESTIC = "RUPassportNumberDomestic" + RU_PASSPORT_NUMBER_INTERNATIONAL = "RUPassportNumberInternational" + SA_NATIONAL_ID = "SANationalID" + SG_NATIONAL_REGISTRATION_IDENTITY_CARD_NUMBER = "SGNationalRegistrationIdentityCardNumber" + SK_PERSONAL_NUMBER = "SKPersonalNumber" + SI_TAX_IDENTIFICATION_NUMBER = "SITaxIdentificationNumber" + SI_UNIQUE_MASTER_CITIZEN_NUMBER = "SIUniqueMasterCitizenNumber" + ZA_IDENTIFICATION_NUMBER = "ZAIdentificationNumber" + KR_RESIDENT_REGISTRATION_NUMBER = "KRResidentRegistrationNumber" + ESDNI = "ESDNI" + ES_SOCIAL_SECURITY_NUMBER = "ESSocialSecurityNumber" + ES_TAX_IDENTIFICATION_NUMBER = "ESTaxIdentificationNumber" + SQL_SERVER_CONNECTION_STRING = "SQLServerConnectionString" + SE_NATIONAL_ID = "SENationalID" + SE_NATIONAL_IDV2 = "SENationalIDV2" + SE_PASSPORT_NUMBER = "SEPassportNumber" + SE_TAX_IDENTIFICATION_NUMBER = "SETaxIdentificationNumber" + SWIFT_CODE = "SWIFTCode" + CH_SOCIAL_SECURITY_NUMBER = "CHSocialSecurityNumber" + TW_NATIONAL_ID = "TWNationalID" + TW_PASSPORT_NUMBER = "TWPassportNumber" + TW_RESIDENT_CERTIFICATE = "TWResidentCertificate" + TH_POPULATION_IDENTIFICATION_CODE = "THPopulationIdentificationCode" + TR_NATIONAL_IDENTIFICATION_NUMBER = "TRNationalIdentificationNumber" + UK_DRIVERS_LICENSE_NUMBER = "UKDriversLicenseNumber" + UK_ELECTORAL_ROLL_NUMBER = "UKElectoralRollNumber" + UK_NATIONAL_HEALTH_NUMBER = "UKNationalHealthNumber" + UK_NATIONAL_INSURANCE_NUMBER = "UKNationalInsuranceNumber" + UK_UNIQUE_TAXPAYER_NUMBER = "UKUniqueTaxpayerNumber" + USUK_PASSPORT_NUMBER = "USUKPassportNumber" + US_BANK_ACCOUNT_NUMBER = "USBankAccountNumber" + US_DRIVERS_LICENSE_NUMBER = "USDriversLicenseNumber" + US_INDIVIDUAL_TAXPAYER_IDENTIFICATION = "USIndividualTaxpayerIdentification" + US_SOCIAL_SECURITY_NUMBER = "USSocialSecurityNumber" + UA_PASSPORT_NUMBER_DOMESTIC = "UAPassportNumberDomestic" + UA_PASSPORT_NUMBER_INTERNATIONAL = "UAPassportNumberInternational" + ORGANIZATION = "Organization" + EMAIL = "Email" + URL = "URL" + AGE = "Age" + PHONE_NUMBER = "PhoneNumber" + IP_ADDRESS = "IPAddress" + DATE = "Date" + PERSON = "Person" + ADDRESS = "Address" + ALL = "All" + DEFAULT = "Default" + +class PiiDomain(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The PII domain used for PII Entity Recognition. + """ + + #: Indicates that entities in the Personal Health Information domain should be redacted. + PHI = "phi" + #: Indicates that no domain is specified. + NONE = "none" + +class RangeKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The kind of range that the resolution object represents. + """ + + NUMBER = "Number" + SPEED = "Speed" + WEIGHT = "Weight" + LENGTH = "Length" + VOLUME = "Volume" + AREA = "Area" + AGE = "Age" + INFORMATION = "Information" + TEMPERATURE = "Temperature" + CURRENCY = "Currency" + +class RelationType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Type of relation. Examples include: ``DosageOfMedication`` or 'FrequencyOfMedication', etc. + """ + + ABBREVIATION = "Abbreviation" + DIRECTION_OF_BODY_STRUCTURE = "DirectionOfBodyStructure" + DIRECTION_OF_CONDITION = "DirectionOfCondition" + DIRECTION_OF_EXAMINATION = "DirectionOfExamination" + DIRECTION_OF_TREATMENT = "DirectionOfTreatment" + DOSAGE_OF_MEDICATION = "DosageOfMedication" + FORM_OF_MEDICATION = "FormOfMedication" + FREQUENCY_OF_MEDICATION = "FrequencyOfMedication" + FREQUENCY_OF_TREATMENT = "FrequencyOfTreatment" + QUALIFIER_OF_CONDITION = "QualifierOfCondition" + RELATION_OF_EXAMINATION = "RelationOfExamination" + ROUTE_OF_MEDICATION = "RouteOfMedication" + TIME_OF_CONDITION = "TimeOfCondition" + TIME_OF_EVENT = "TimeOfEvent" + TIME_OF_EXAMINATION = "TimeOfExamination" + TIME_OF_MEDICATION = "TimeOfMedication" + TIME_OF_TREATMENT = "TimeOfTreatment" + UNIT_OF_CONDITION = "UnitOfCondition" + UNIT_OF_EXAMINATION = "UnitOfExamination" + VALUE_OF_CONDITION = "ValueOfCondition" + VALUE_OF_EXAMINATION = "ValueOfExamination" + +class RelativeTo(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The reference point that the ordinal number denotes. + """ + + CURRENT = "Current" + END = "End" + START = "Start" + +class ResolutionKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The entity resolution object kind. + """ + + BOOLEAN_RESOLUTION = "BooleanResolution" + DATE_TIME_RESOLUTION = "DateTimeResolution" + NUMBER_RESOLUTION = "NumberResolution" + ORDINAL_RESOLUTION = "OrdinalResolution" + SPEED_RESOLUTION = "SpeedResolution" + WEIGHT_RESOLUTION = "WeightResolution" + LENGTH_RESOLUTION = "LengthResolution" + VOLUME_RESOLUTION = "VolumeResolution" + AREA_RESOLUTION = "AreaResolution" + AGE_RESOLUTION = "AgeResolution" + INFORMATION_RESOLUTION = "InformationResolution" + TEMPERATURE_RESOLUTION = "TemperatureResolution" + CURRENCY_RESOLUTION = "CurrencyResolution" + NUMERIC_RANGE_RESOLUTION = "NumericRangeResolution" + TEMPORAL_SPAN_RESOLUTION = "TemporalSpanResolution" + +class ScriptKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Identifies the script of the input document. + """ + + LATIN = "Latin" + +class SentenceSentimentValue(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The predicted Sentiment for the sentence. + """ + + POSITIVE = "positive" + NEUTRAL = "neutral" + NEGATIVE = "negative" + +class SpeedUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The speed Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + METERS_PER_SECOND = "MetersPerSecond" + KILOMETERS_PER_HOUR = "KilometersPerHour" + KILOMETERS_PER_MINUTE = "KilometersPerMinute" + KILOMETERS_PER_SECOND = "KilometersPerSecond" + MILES_PER_HOUR = "MilesPerHour" + KNOT = "Knot" + FOOT_PER_SECOND = "FootPerSecond" + FOOT_PER_MINUTE = "FootPerMinute" + YARDS_PER_MINUTE = "YardsPerMinute" + YARDS_PER_SECOND = "YardsPerSecond" + METERS_PER_MILLISECOND = "MetersPerMillisecond" + CENTIMETERS_PER_MILLISECOND = "CentimetersPerMillisecond" + KILOMETERS_PER_MILLISECOND = "KilometersPerMillisecond" + +class State(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The status of the task at the mentioned last update time. + """ + + NOT_STARTED = "notStarted" + RUNNING = "running" + SUCCEEDED = "succeeded" + FAILED = "failed" + CANCELLED = "cancelled" + CANCELLING = "cancelling" + PARTIALLY_COMPLETED = "partiallyCompleted" + +class StringIndexType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) + according to Unicode v8.0.0. For additional information see + https://aka.ms/text-analytics-offsets. + """ + + #: Returned offset and length values will correspond to TextElements (Graphemes and Grapheme + #: clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is + #: written in .Net Framework or .Net Core and you will be using StringInfo. + TEXT_ELEMENTS_V8 = "TextElements_v8" + #: Returned offset and length values will correspond to Unicode code points. Use this option if + #: your application is written in a language that support Unicode, for example Python. + UNICODE_CODE_POINT = "UnicodeCodePoint" + #: Returned offset and length values will correspond to UTF-16 code units. Use this option if your + #: application is written in a language that support Unicode, for example Java, JavaScript. + UTF16_CODE_UNIT = "Utf16CodeUnit" + +class TargetRelationType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type related to the target. + """ + + ASSESSMENT = "assessment" + TARGET = "target" + +class TemperatureUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The temperature Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + FAHRENHEIT = "Fahrenheit" + KELVIN = "Kelvin" + RANKINE = "Rankine" + CELSIUS = "Celsius" + +class TemporalModifier(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """An optional modifier of a date/time instance. + """ + + AFTER_APPROX = "AfterApprox" + BEFORE = "Before" + BEFORE_START = "BeforeStart" + APPROX = "Approx" + REFERENCE_UNDEFINED = "ReferenceUndefined" + SINCE_END = "SinceEnd" + AFTER_MID = "AfterMid" + START = "Start" + AFTER = "After" + BEFORE_END = "BeforeEnd" + UNTIL = "Until" + END = "End" + LESS = "Less" + SINCE = "Since" + AFTER_START = "AfterStart" + BEFORE_APPROX = "BeforeApprox" + MID = "Mid" + MORE = "More" + +class TokenSentimentValue(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Targeted sentiment in the sentence. + """ + + POSITIVE = "positive" + MIXED = "mixed" + NEGATIVE = "negative" + +class VolumeUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The Volume Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + CUBIC_METER = "CubicMeter" + CUBIC_CENTIMETER = "CubicCentimeter" + CUBIC_MILLIMETER = "CubicMillimeter" + HECTOLITER = "Hectoliter" + DECALITER = "Decaliter" + LITER = "Liter" + CENTILITER = "Centiliter" + MILLILITER = "Milliliter" + CUBIC_YARD = "CubicYard" + CUBIC_INCH = "CubicInch" + CUBIC_FOOT = "CubicFoot" + CUBIC_MILE = "CubicMile" + FLUID_OUNCE = "FluidOunce" + TEASPOON = "Teaspoon" + TABLESPOON = "Tablespoon" + PINT = "Pint" + QUART = "Quart" + CUP = "Cup" + GILL = "Gill" + PINCH = "Pinch" + FLUID_DRAM = "FluidDram" + BARREL = "Barrel" + MINIM = "Minim" + CORD = "Cord" + PECK = "Peck" + BUSHEL = "Bushel" + HOGSHEAD = "Hogshead" + +class WarningCodeValue(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Error code. + """ + + LONG_WORDS_IN_DOCUMENT = "LongWordsInDocument" + DOCUMENT_TRUNCATED = "DocumentTruncated" + +class WeightUnit(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The weight Unit of measurement. + """ + + UNSPECIFIED = "Unspecified" + KILOGRAM = "Kilogram" + GRAM = "Gram" + MILLIGRAM = "Milligram" + GALLON = "Gallon" + METRIC_TON = "MetricTon" + TON = "Ton" + POUND = "Pound" + OUNCE = "Ounce" + GRAIN = "Grain" + PENNY_WEIGHT = "PennyWeight" + LONG_TON_BRITISH = "LongTonBritish" + SHORT_TON_US = "ShortTonUS" + SHORT_HUNDRED_WEIGHT_US = "ShortHundredWeightUS" + STONE = "Stone" + DRAM = "Dram" diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/__init__.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/__init__.py new file mode 100644 index 000000000000..714c39805ebe --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._text_analytics_client_operations import TextAnalyticsClientOperationsMixin + +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'TextAnalyticsClientOperationsMixin', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_patch.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_patch.py new file mode 100644 index 000000000000..8207ee65a7df --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_patch.py @@ -0,0 +1,120 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List, Any, Optional, Union, TypeVar, Callable, Dict, cast +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest +from ._text_analytics_client_operations import TextAnalyticsClientOperationsMixin as GeneratedTextAnalyticsClientOperationsMixin +from ...._lro import AnalyzeActionsLROPoller, AnalyzeActionsLROPollingMethod +from .. import models as _models +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + + +class TextAnalyticsClientOperationsMixin(GeneratedTextAnalyticsClientOperationsMixin): + + @distributed_trace + def begin_analyze_text_submit_job( + self, + body: _models.AnalyzeTextJobsInput, + **kwargs: Any + ) -> AnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AnalyzeActionsLROPollingMethod. Pass + in False for this operation to not poll, or pass in your own initialized polling object for a + personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AnalyzeActionsLROPoller that returns either AnalyzeTextJobState or the + result of cls(response) + :rtype: + ~...._lro.AnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + poller_cls = kwargs.pop("poller_cls", AnalyzeActionsLROPoller) # Handwritten + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._analyze_text_submit_job_initial( # type: ignore + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(PollingMethod, AnalyzeActionsLROPollingMethod( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: PollingMethod + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return poller_cls.from_continuation_token( # Handwritten + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return poller_cls(self._client, raw_result, get_long_running_output, polling_method) # Handwritten + + begin_analyze_text_submit_job.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + +__all__: List[str] = ["TextAnalyticsClientOperationsMixin"] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_text_analytics_client_operations.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_text_analytics_client_operations.py new file mode 100644 index 000000000000..55a3c8c32022 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/operations/_text_analytics_client_operations.py @@ -0,0 +1,744 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload + +from ...._lro import AnalyzeActionsLROPoller, AnalyzeActionsLROPollingMethod +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.polling.base_polling import LROBasePolling +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict + +from .. import models as _models +from ..._serialization import Serializer +from .._vendor import MixinABC, _convert_request, _format_url_section +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_analyze_text_request( + *, + show_stats: Optional[bool] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/:analyze-text") + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if show_stats is not None: + _params['showStats'] = _SERIALIZER.query("show_stats", show_stats, 'bool') + + # Construct headers + if content_type is not None: + _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_analyze_text_submit_job_request( + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/analyze-text/jobs") + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + if content_type is not None: + _headers['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_analyze_text_job_status_request( + job_id: str, + *, + show_stats: Optional[bool] = None, + top: Optional[int] = None, + skip: Optional[int] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/analyze-text/jobs/{jobId}") + path_format_arguments = { + "jobId": _SERIALIZER.url("job_id", job_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if show_stats is not None: + _params['showStats'] = _SERIALIZER.query("show_stats", show_stats, 'bool') + if top is not None: + _params['top'] = _SERIALIZER.query("top", top, 'int') + if skip is not None: + _params['skip'] = _SERIALIZER.query("skip", skip, 'int') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_analyze_text_cancel_job_request( + job_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/analyze-text/jobs/{jobId}:cancel") + path_format_arguments = { + "jobId": _SERIALIZER.url("job_id", job_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + +class TextAnalyticsClientOperationsMixin(MixinABC): + + @overload + def analyze_text( + self, + body: _models.AnalyzeTextTask, + show_stats: Optional[bool] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def analyze_text( + self, + body: IO, + show_stats: Optional[bool] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Required. + :type body: IO + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + + + @distributed_trace + def analyze_text( + self, + body: Union[_models.AnalyzeTextTask, IO], + show_stats: Optional[bool] = None, + **kwargs: Any + ) -> _models.AnalyzeTextTaskResult: + """Request text analysis over a collection of documents. + + Submit a collection of text documents for analysis. Specify a single unique task to be + executed immediately. + + :param body: Collection of documents to analyze and a single task to execute. Is either a model + type or a IO type. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTask or IO + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextTaskResult or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextTaskResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextTaskResult] + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IO, bytes)): + _content = body + else: + _json = self._serialize.body(body, 'AnalyzeTextTask') + + request = build_analyze_text_request( + show_stats=show_stats, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self.analyze_text.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('AnalyzeTextTaskResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + analyze_text.metadata = {'url': "/:analyze-text"} # type: ignore + + + def _analyze_text_submit_job_initial( + self, + body: Union[_models.AnalyzeTextJobsInput, IO], + **kwargs: Any + ) -> Optional[_models.AnalyzeTextJobState]: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[Optional[_models.AnalyzeTextJobState]] + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(body, (IO, bytes)): + _content = body + else: + _json = self._serialize.body(body, 'AnalyzeTextJobsInput') + + request = build_analyze_text_submit_job_request( + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + template_url=self._analyze_text_submit_job_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + + if response.status_code == 202: + response_headers['Operation-Location']=self._deserialize('str', response.headers.get('Operation-Location')) + + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + _analyze_text_submit_job_initial.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + + @overload + def begin_analyze_text_submit_job( + self, + body: _models.AnalyzeTextJobsInput, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AnalyzeActionsLROPollingMethod. Pass + in False for this operation to not poll, or pass in your own initialized polling object for a + personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AnalyzeActionsLROPoller that returns either AnalyzeTextJobState or the + result of cls(response) + :rtype: + ~...._lro.AnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_analyze_text_submit_job( + self, + body: IO, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Required. + :type body: IO + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AnalyzeActionsLROPollingMethod. Pass + in False for this operation to not poll, or pass in your own initialized polling object for a + personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AnalyzeActionsLROPoller that returns either AnalyzeTextJobState or the + result of cls(response) + :rtype: + ~...._lro.AnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + + @distributed_trace + def begin_analyze_text_submit_job( + self, + body: Union[_models.AnalyzeTextJobsInput, IO], + **kwargs: Any + ) -> AnalyzeActionsLROPoller[_models.AnalyzeTextJobState]: + """Submit text analysis job. + + Submit a collection of text documents for analysis. Specify one or more unique tasks to be + executed as a long-running operation. + + :param body: Collection of documents to analyze and one or more tasks to execute. Is either a + model type or a IO type. Required. + :type body: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobsInput or IO + :keyword content_type: Body Parameter content-type. Known values are: 'application/json'. + Default value is None. + :paramtype content_type: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AnalyzeActionsLROPollingMethod. Pass + in False for this operation to not poll, or pass in your own initialized polling object for a + personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AnalyzeActionsLROPoller that returns either AnalyzeTextJobState or the + result of cls(response) + :rtype: + ~...._lro.AnalyzeActionsLROPoller[~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + content_type = kwargs.pop('content_type', _headers.pop('Content-Type', None)) # type: Optional[str] + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._analyze_text_submit_job_initial( # type: ignore + body=body, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(PollingMethod, AnalyzeActionsLROPollingMethod( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) + else: polling_method = polling + if cont_token: + return AnalyzeActionsLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AnalyzeActionsLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_analyze_text_submit_job.metadata = {'url': "/analyze-text/jobs"} # type: ignore + + @distributed_trace + def analyze_text_job_status( + self, + job_id: str, + show_stats: Optional[bool] = None, + top: Optional[int] = None, + skip: Optional[int] = None, + **kwargs: Any + ) -> _models.AnalyzeTextJobState: + """Get analysis status and results. + + Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are + succeeded, the job will transition to the succeeded state and results will be available for + each task. + + :param job_id: Job ID. Required. + :type job_id: str + :param show_stats: (Optional) if set to true, response will contain request and document level + statistics. Default value is None. + :type show_stats: bool + :param top: The maximum number of resources to return from the collection. Default value is + None. + :type top: int + :param skip: An offset into the collection of the first resource to be returned. Default value + is None. + :type skip: int + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AnalyzeTextJobState or the result of cls(response) + :rtype: ~azure.ai.textanalytics.v2022_10_01_preview.models.AnalyzeTextJobState + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[_models.AnalyzeTextJobState] + + + request = build_analyze_text_job_status_request( + job_id=job_id, + show_stats=show_stats, + top=top, + skip=skip, + api_version=api_version, + template_url=self.analyze_text_job_status.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('AnalyzeTextJobState', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + analyze_text_job_status.metadata = {'url': "/analyze-text/jobs/{jobId}"} # type: ignore + + + def _analyze_text_cancel_job_initial( # pylint: disable=inconsistent-return-statements + self, + job_id: str, + **kwargs: Any + ) -> None: + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + + + request = build_analyze_text_cancel_job_request( + job_id=job_id, + api_version=api_version, + template_url=self._analyze_text_cancel_job_initial.metadata['url'], + headers=_headers, + params=_params, + ) + request = _convert_request(request) + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + request.url = self._client.format_url(request.url, **path_format_arguments) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Operation-Location']=self._deserialize('str', response.headers.get('Operation-Location')) + + + if cls: + return cls(pipeline_response, None, response_headers) + + _analyze_text_cancel_job_initial.metadata = {'url': "/analyze-text/jobs/{jobId}:cancel"} # type: ignore + + + @distributed_trace + def begin_analyze_text_cancel_job( + self, + job_id: str, + **kwargs: Any + ) -> LROPoller[None]: + """Cancel a long-running Text Analysis job. + + Cancel a long-running Text Analysis job. + + :param job_id: Job ID. Required. + :type job_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be LROBasePolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2022-10-01-preview")) # type: str + cls = kwargs.pop('cls', None) # type: ClsType[None] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._analyze_text_cancel_job_initial( # type: ignore + job_id=job_id, + api_version=api_version, + cls=lambda x,y,z: x, + headers=_headers, + params=_params, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) + + + path_format_arguments = { + "Endpoint": self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), + } + + if polling is True: + polling_method = cast(PollingMethod, LROBasePolling( + lro_delay, + + path_format_arguments=path_format_arguments, + **kwargs + )) # type: PollingMethod + elif polling is False: polling_method = cast(PollingMethod, NoPolling()) + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_analyze_text_cancel_job.metadata = {'url': "/analyze-text/jobs/{jobId}:cancel"} # type: ignore diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/py.typed b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/py.typed new file mode 100644 index 000000000000..e5aff4f83af8 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_lro.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_lro.py index 130c60e19e63..24937087bdf0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_lro.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_lro.py @@ -18,7 +18,6 @@ OperationFailed, BadStatus, ) -from ._generated.v2022_05_01.models import JobState _FINISHED = frozenset(["succeeded", "cancelled", "failed", "partiallycompleted", "partiallysucceeded"]) _FAILED = frozenset(["failed"]) @@ -219,6 +218,7 @@ def __init__(self, *args, **kwargs): @property def _current_body(self): + from ._generated.models import JobState return JobState.deserialize(self._pipeline_response) @property @@ -384,6 +384,7 @@ def __init__(self, *args, **kwargs): @property def _current_body(self): + from ._generated.models import JobState return JobState.deserialize(self._pipeline_response) @property diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_models.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_models.py index 524ba66d5ebf..c460a4d9c8d5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_models.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_models.py @@ -5,73 +5,25 @@ # ------------------------------------ import re from enum import Enum +from typing import Union from typing_extensions import Literal from azure.core import CaseInsensitiveEnumMeta from ._generated.models import ( LanguageInput, MultiLanguageInput, + PhraseControlStrategy ) from ._generated.v3_0 import models as _v3_0_models from ._generated.v3_1 import models as _v3_1_models -from ._generated.v2022_05_01 import models as _v2022_05_01_models +from ._generated.v2022_10_01_preview import models as _v2022_10_01_preview_models from ._check import is_language_api, string_index_type_compatibility +from ._dict_mixin import DictMixin def _get_indices(relation): return [int(s) for s in re.findall(r"\d+", relation)] -class DictMixin: - def __setitem__(self, key, item): - self.__dict__[key] = item - - def __getitem__(self, key): - return self.__dict__[key] - - def __repr__(self): - return str(self) - - def __len__(self): - return len(self.keys()) - - def __delitem__(self, key): - self.__dict__[key] = None - - def __eq__(self, other): - if isinstance(other, self.__class__): - return self.__dict__ == other.__dict__ - return False - - def __ne__(self, other): - return not self.__eq__(other) - - def __contains__(self, key): - return key in self.__dict__ - - def __str__(self): - return str({k: v for k, v in self.__dict__.items() if not k.startswith("_")}) - - def has_key(self, k): - return k in self.__dict__ - - def update(self, *args, **kwargs): - return self.__dict__.update(*args, **kwargs) - - def keys(self): - return [k for k in self.__dict__ if not k.startswith("_")] - - def values(self): - return [v for k, v in self.__dict__.items() if not k.startswith("_")] - - def items(self): - return [(k, v) for k, v in self.__dict__.items() if not k.startswith("_")] - - def get(self, key, default=None): - if key in self.__dict__: - return self.__dict__[key] - return default - - class TextAnalysisKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): """Enumeration of supported Text Analysis kinds. @@ -88,6 +40,8 @@ class TextAnalysisKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): CUSTOM_ENTITY_RECOGNITION = "CustomEntityRecognition" CUSTOM_DOCUMENT_CLASSIFICATION = "CustomDocumentClassification" LANGUAGE_DETECTION = "LanguageDetection" + EXTRACTIVE_SUMMARIZATION = "ExtractiveSummarization" + ABSTRACTIVE_SUMMARIZATION = "AbstractiveSummarization" class EntityAssociation(str, Enum, metaclass=CaseInsensitiveEnumMeta): @@ -376,24 +330,31 @@ class DetectedLanguage(DictMixin): :ivar confidence_score: A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. :vartype confidence_score: float + :ivar Optional[str] script: Identifies the script of the input document. Possible values: "Latin". + + .. versionadded:: 2022-10-01-preview + The *script* property. """ def __init__(self, **kwargs): self.name = kwargs.get("name", None) self.iso6391_name = kwargs.get("iso6391_name", None) self.confidence_score = kwargs.get("confidence_score", None) + self.script = kwargs.get("script", None) @classmethod def _from_generated(cls, language): + script = language.script if hasattr(language, "script") else None return cls( name=language.name, iso6391_name=language.iso6391_name, confidence_score=language.confidence_score, + script=script ) def __repr__(self): - return "DetectedLanguage(name={}, iso6391_name={}, confidence_score={})".format( - self.name, self.iso6391_name, self.confidence_score + return "DetectedLanguage(name={}, iso6391_name={}, confidence_score={}, script={})".format( + self.name, self.iso6391_name, self.confidence_score, self.script )[:1024] @@ -415,9 +376,15 @@ class RecognizeEntitiesResult(DictMixin): field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a RecognizeEntitiesResult. :ivar str kind: The text analysis kind - "EntityRecognition". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -425,15 +392,18 @@ def __init__(self, **kwargs): self.entities = kwargs.get("entities", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get("detected_language", None) self.is_error: Literal[False] = False self.kind: Literal["EntityRecognition"] = "EntityRecognition" def __repr__(self): - return "RecognizeEntitiesResult(id={}, entities={}, warnings={}, statistics={}, is_error={})".format( + return "RecognizeEntitiesResult(id={}, entities={}, warnings={}, statistics={}, " \ + "detected_language={}, is_error={})".format( self.id, repr(self.entities), repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[ :1024 @@ -460,9 +430,15 @@ class RecognizePiiEntitiesResult(DictMixin): field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a RecognizePiiEntitiesResult. :ivar str kind: The text analysis kind - "PiiEntityRecognition". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -471,18 +447,20 @@ def __init__(self, **kwargs): self.redacted_text = kwargs.get("redacted_text", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get('detected_language', None) self.is_error: Literal[False] = False self.kind: Literal["PiiEntityRecognition"] = "PiiEntityRecognition" def __repr__(self): return ( "RecognizePiiEntitiesResult(id={}, entities={}, redacted_text={}, warnings={}, " - "statistics={}, is_error={})".format( + "statistics={}, detected_language={}, is_error={})".format( self.id, repr(self.entities), self.redacted_text, repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[:1024] ) @@ -512,9 +490,19 @@ class AnalyzeHealthcareEntitiesResult(DictMixin): field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar fhir_bundle: If `fhir_version` is passed, this will contain a + FHIR compatible object for consumption in other Healthcare tools. For additional + information see https://www.hl7.org/fhir/overview.html. + :vartype fhir_bundle: Optional[dict[str, any]] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a AnalyzeHealthcareEntitiesResult. :ivar str kind: The text analysis kind - "Healthcare". + + .. versionadded:: 2022-10-01-preview + The *fhir_bundle* and *detected_language* properties. """ def __init__(self, **kwargs): @@ -523,6 +511,8 @@ def __init__(self, **kwargs): self.entity_relations = kwargs.get("entity_relations", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.fhir_bundle = kwargs.get("fhir_bundle", None) + self.detected_language = kwargs.get('detected_language', None) self.is_error: Literal[False] = False self.kind: Literal["Healthcare"] = "Healthcare" @@ -538,7 +528,7 @@ def _from_generated(cls, healthcare_result): ) for r in healthcare_result.relations ] - + fhir_bundle = healthcare_result.fhir_bundle if hasattr(healthcare_result, "fhir_bundle") else None return cls( id=healthcare_result.id, entities=entities, @@ -552,17 +542,23 @@ def _from_generated(cls, healthcare_result): statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access healthcare_result.statistics ), + fhir_bundle=fhir_bundle, + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + healthcare_result.detected_language + ) if hasattr(healthcare_result, "detected_language") and healthcare_result.detected_language else None ) def __repr__(self): return ( "AnalyzeHealthcareEntitiesResult(id={}, entities={}, entity_relations={}, warnings={}, " - "statistics={}, is_error={})".format( + "statistics={}, fhir_bundle={}, detected_language={}, is_error={})".format( self.id, repr(self.entities), repr(self.entity_relations), repr(self.warnings), repr(self.statistics), + self.fhir_bundle, + repr(self.detected_language), self.is_error, )[:1024] ) @@ -581,11 +577,17 @@ class HealthcareRelation(DictMixin): :ivar roles: The roles present in this relation. I.e., in the document "The subject took 100 mg of ibuprofen", the present roles are "Dosage" and "Medication". :vartype roles: list[~azure.ai.textanalytics.HealthcareRelationRole] + :ivar confidence_score: Confidence score between 0 and 1 of the extracted relation. + :vartype confidence_score: Optional[float] + + .. versionadded:: 2022-10-01-preview + The *confidence_score* property. """ def __init__(self, **kwargs): self.relation_type = kwargs.get("relation_type") self.roles = kwargs.get("roles") + self.confidence_score = kwargs.get("confidence_score") @classmethod def _from_generated(cls, healthcare_relation_result, entities): @@ -595,15 +597,19 @@ def _from_generated(cls, healthcare_relation_result, entities): ) for r in healthcare_relation_result.entities ] + confidence_score = healthcare_relation_result.confidence_score \ + if hasattr(healthcare_relation_result, "confidence_score") else None return cls( relation_type=healthcare_relation_result.relation_type, roles=roles, + confidence_score=confidence_score, ) def __repr__(self): - return "HealthcareRelation(relation_type={}, roles={})".format( + return "HealthcareRelation(relation_type={}, roles={}, confidence_score={})".format( self.relation_type, repr(self.roles), + self.confidence_score, )[:1024] @@ -711,9 +717,17 @@ class CategorizedEntity(DictMixin): :ivar confidence_score: Confidence score between 0 and 1 of the extracted entity. :vartype confidence_score: float + :ivar resolutions: The collection of entity resolution objects. More information can be found here: + https://aka.ms/azsdk/language/ner-resolutions + :vartype resolutions: Optional[list[AgeResolution or AreaResolution or BooleanResolution or + CurrencyResolution or DateTimeResolution or InformationResolution or LengthResolution or + NumberResolution or NumericRangeResolution or OrdinalResolution or SpeedResolution or + TemperatureResolution or TemporalSpanResolution or VolumeResolution or WeightResolution]] .. versionadded:: v3.1 The *offset* and *length* properties. + .. versionadded:: 2022-10-01-preview + The *resolutions* property. """ def __init__(self, **kwargs): @@ -723,6 +737,7 @@ def __init__(self, **kwargs): self.length = kwargs.get("length", None) self.offset = kwargs.get("offset", None) self.confidence_score = kwargs.get("confidence_score", None) + self.resolutions = kwargs.get("resolutions", None) @classmethod def _from_generated(cls, entity): @@ -740,18 +755,20 @@ def _from_generated(cls, entity): length=length, offset=offset, confidence_score=entity.confidence_score, + resolutions=entity.resolutions if hasattr(entity, "resolutions") else None ) def __repr__(self): return ( "CategorizedEntity(text={}, category={}, subcategory={}, " - "length={}, offset={}, confidence_score={})".format( + "length={}, offset={}, confidence_score={}, resolutions={})".format( self.text, self.category, self.subcategory, self.length, self.offset, self.confidence_score, + repr(self.resolutions) )[:1024] ) @@ -1036,9 +1053,15 @@ class ExtractKeyPhrasesResult(DictMixin): field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a ExtractKeyPhrasesResult. :ivar str kind: The text analysis kind - "KeyPhraseExtraction". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -1046,15 +1069,18 @@ def __init__(self, **kwargs): self.key_phrases = kwargs.get("key_phrases", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get('detected_language', None) self.is_error: Literal[False] = False self.kind: Literal["KeyPhraseExtraction"] = "KeyPhraseExtraction" def __repr__(self): - return "ExtractKeyPhrasesResult(id={}, key_phrases={}, warnings={}, statistics={}, is_error={})".format( + return "ExtractKeyPhrasesResult(id={}, key_phrases={}, warnings={}, statistics={}, " \ + "detected_language={}, is_error={})".format( self.id, self.key_phrases, repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[ :1024 @@ -1079,9 +1105,15 @@ class RecognizeLinkedEntitiesResult(DictMixin): field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a RecognizeLinkedEntitiesResult. :ivar str kind: The text analysis kind - "EntityLinking". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -1089,15 +1121,18 @@ def __init__(self, **kwargs): self.entities = kwargs.get("entities", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get('detected_language', None) self.is_error: Literal[False] = False self.kind: Literal["EntityLinking"] = "EntityLinking" def __repr__(self): - return "RecognizeLinkedEntitiesResult(id={}, entities={}, warnings={}, statistics={}, is_error={})".format( + return "RecognizeLinkedEntitiesResult(id={}, entities={}, warnings={}, statistics={}, " \ + "detected_language={}, is_error={})".format( self.id, repr(self.entities), repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[ :1024 @@ -1131,9 +1166,15 @@ class AnalyzeSentimentResult(DictMixin): :ivar sentences: Sentence level sentiment analysis. :vartype sentences: list[~azure.ai.textanalytics.SentenceSentiment] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a AnalyzeSentimentResult. :ivar str kind: The text analysis kind - "SentimentAnalysis". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -1143,19 +1184,21 @@ def __init__(self, **kwargs): self.statistics = kwargs.get("statistics", None) self.confidence_scores = kwargs.get("confidence_scores", None) self.sentences = kwargs.get("sentences", None) + self.detected_language = kwargs.get("detected_language", None) self.is_error: Literal[False] = False self.kind: Literal["SentimentAnalysis"] = "SentimentAnalysis" def __repr__(self): return ( "AnalyzeSentimentResult(id={}, sentiment={}, warnings={}, statistics={}, confidence_scores={}, " - "sentences={}, is_error={})".format( + "sentences={}, detected_language={}, is_error={})".format( self.id, self.sentiment, repr(self.warnings), repr(self.statistics), repr(self.confidence_scores), repr(self.sentences), + repr(self.detected_language), self.is_error, )[:1024] ) @@ -1226,6 +1269,9 @@ def __getattr__(self, attr): + AnalyzeHealthcareEntitiesResult().keys() + RecognizeCustomEntitiesResult().keys() + ClassifyDocumentResult().keys() + + ExtractSummaryResult().keys() + + AbstractSummaryResult().keys() + + DynamicClassificationResult().keys() ) result_attrs = result_set.difference(DocumentError().keys()) if attr in result_attrs: @@ -1414,14 +1460,18 @@ class TextDocumentInput(DictMixin, MultiLanguageInput): :keyword str id: Required. Unique, non-empty document identifier. :keyword str text: Required. The input text to process. :keyword str language: This is the 2 letter ISO 639-1 representation - of a language. For example, use "en" for English; "es" for Spanish etc. If + of a language. For example, use "en" for English; "es" for Spanish etc. + For automatic language detection, use "auto" (Only supported by long-running + operation APIs with API version 2022-10-01-preview or newer). If not set, uses "en" for English as default. :ivar id: Required. Unique, non-empty document identifier. :vartype id: str :ivar text: Required. The input text to process. :vartype text: str :ivar language: This is the 2 letter ISO 639-1 representation - of a language. For example, use "en" for English; "es" for Spanish etc. If + of a language. For example, use "en" for English; "es" for Spanish etc. + For automatic language detection, use "auto" (Only supported by long-running + operation APIs with API version 2022-10-01-preview or newer). If not set, uses "en" for English as default. :vartype language: Optional[str] """ @@ -1786,6 +1836,8 @@ class _AnalyzeActionsType(str, Enum, metaclass=CaseInsensitiveEnumMeta): SINGLE_LABEL_CLASSIFY = "single_label_classify" MULTI_LABEL_CLASSIFY = "multi_label_classify" ANALYZE_HEALTHCARE_ENTITIES = "analyze_healthcare_entities" + EXTRACT_SUMMARY = "extract_summary" + ABSTRACT_SUMMARY = "abstract_summary" class ActionPointerKind(str, Enum, metaclass=CaseInsensitiveEnumMeta): @@ -1846,9 +1898,9 @@ def __repr__(self, **kwargs): def _to_generated(self, api_version, task_id): if is_language_api(api_version): - return _v2022_05_01_models.EntitiesLROTask( + return _v2022_10_01_preview_models.EntitiesLROTask( task_name=task_id, - parameters=_v2022_05_01_models.EntitiesTaskParameters( + parameters=_v2022_10_01_preview_models.EntitiesTaskParameters( model_version=self.model_version, string_index_type=string_index_type_compatibility(self.string_index_type), logging_opt_out=self.disable_service_logs, @@ -1930,9 +1982,9 @@ def __repr__(self, **kwargs): def _to_generated(self, api_version, task_id): if is_language_api(api_version): - return _v2022_05_01_models.SentimentAnalysisLROTask( + return _v2022_10_01_preview_models.SentimentAnalysisLROTask( task_name=task_id, - parameters=_v2022_05_01_models.SentimentAnalysisTaskParameters( + parameters=_v2022_10_01_preview_models.SentimentAnalysisTaskParameters( model_version=self.model_version, opinion_mining=self.show_opinion_mining, string_index_type=string_index_type_compatibility(self.string_index_type), @@ -2019,9 +2071,9 @@ def __repr__(self, **kwargs): def _to_generated(self, api_version, task_id): if is_language_api(api_version): - return _v2022_05_01_models.PiiLROTask( + return _v2022_10_01_preview_models.PiiLROTask( task_name=task_id, - parameters=_v2022_05_01_models.PiiTaskParameters( + parameters=_v2022_10_01_preview_models.PiiTaskParameters( model_version=self.model_version, domain=self.domain_filter, pii_categories=self.categories_filter, @@ -2083,9 +2135,9 @@ def __repr__(self, **kwargs): def _to_generated(self, api_version, task_id): if is_language_api(api_version): - return _v2022_05_01_models.KeyPhraseLROTask( + return _v2022_10_01_preview_models.KeyPhraseLROTask( task_name=task_id, - parameters=_v2022_05_01_models.KeyPhraseTaskParameters( + parameters=_v2022_10_01_preview_models.KeyPhraseTaskParameters( model_version=self.model_version, logging_opt_out=self.disable_service_logs, ) @@ -2151,9 +2203,9 @@ def __repr__(self, **kwargs): def _to_generated(self, api_version, task_id): if is_language_api(api_version): - return _v2022_05_01_models.EntityLinkingLROTask( + return _v2022_10_01_preview_models.EntityLinkingLROTask( task_name=task_id, - parameters=_v2022_05_01_models.EntityLinkingTaskParameters( + parameters=_v2022_10_01_preview_models.EntityLinkingTaskParameters( model_version=self.model_version, string_index_type=string_index_type_compatibility(self.string_index_type), logging_opt_out=self.disable_service_logs, @@ -2229,9 +2281,9 @@ def __repr__(self): )[:1024] def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument - return _v2022_05_01_models.CustomEntitiesLROTask( + return _v2022_10_01_preview_models.CustomEntitiesLROTask( task_name=task_id, - parameters=_v2022_05_01_models.CustomEntitiesTaskParameters( + parameters=_v2022_10_01_preview_models.CustomEntitiesTaskParameters( project_name=self.project_name, deployment_name=self.deployment_name, string_index_type=string_index_type_compatibility(self.string_index_type), @@ -2255,9 +2307,15 @@ class RecognizeCustomEntitiesResult(DictMixin): :ivar statistics: If `show_stats=True` was specified in the request this field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a RecognizeCustomEntitiesResult. :ivar str kind: The text analysis kind - "CustomEntityRecognition". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__(self, **kwargs): @@ -2265,15 +2323,18 @@ def __init__(self, **kwargs): self.entities = kwargs.get("entities", None) self.warnings = kwargs.get("warnings", []) self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get("detected_language", None) self.is_error: Literal[False] = False self.kind: Literal["CustomEntityRecognition"] = "CustomEntityRecognition" def __repr__(self): - return "RecognizeCustomEntitiesResult(id={}, entities={}, warnings={}, statistics={}, is_error={})".format( + return "RecognizeCustomEntitiesResult(id={}, entities={}, warnings={}, statistics={}, " \ + "detected_language={}, is_error={})".format( self.id, repr(self.entities), repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[ :1024 @@ -2296,6 +2357,9 @@ def _from_generated(cls, result): statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access result.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + result.detected_language + ) if hasattr(result, "detected_language") and result.detected_language else None ) @@ -2348,9 +2412,9 @@ def __repr__(self): )[:1024] def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument - return _v2022_05_01_models.CustomMultiLabelClassificationLROTask( + return _v2022_10_01_preview_models.CustomMultiLabelClassificationLROTask( task_name=task_id, - parameters=_v2022_05_01_models.CustomMultiLabelClassificationTaskParameters( + parameters=_v2022_10_01_preview_models.CustomMultiLabelClassificationTaskParameters( project_name=self.project_name, deployment_name=self.deployment_name, logging_opt_out=self.disable_service_logs, @@ -2370,9 +2434,15 @@ class ClassifyDocumentResult(DictMixin): :ivar statistics: If `show_stats=True` was specified in the request this field will contain information about the document payload. :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' was set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] :ivar bool is_error: Boolean check for error item when iterating over list of results. Always False for an instance of a ClassifyDocumentResult. :ivar str kind: The text analysis kind - "CustomDocumentClassification". + + .. versionadded:: 2022-10-01-preview + The *detected_language* property. """ def __init__( @@ -2383,16 +2453,18 @@ def __init__( self.classifications = kwargs.get('classifications', None) self.warnings = kwargs.get('warnings', []) self.statistics = kwargs.get('statistics', None) + self.detected_language = kwargs.get('detected_language', None) self.is_error: Literal[False] = False self.kind: Literal["CustomDocumentClassification"] = "CustomDocumentClassification" def __repr__(self): - return "ClassifyDocumentResult(id={}, classifications={}, warnings={}, statistics={}, " \ + return "ClassifyDocumentResult(id={}, classifications={}, warnings={}, statistics={}, detected_language={} " \ "is_error={})".format( self.id, repr(self.classifications), repr(self.warnings), repr(self.statistics), + repr(self.detected_language), self.is_error, )[ :1024 @@ -2415,6 +2487,9 @@ def _from_generated(cls, result): statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access result.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + result.detected_language + ) if hasattr(result, "detected_language") and result.detected_language else None ) @@ -2467,9 +2542,9 @@ def __repr__(self): )[:1024] def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument - return _v2022_05_01_models.CustomSingleLabelClassificationLROTask( + return _v2022_10_01_preview_models.CustomSingleLabelClassificationLROTask( task_name=task_id, - parameters=_v2022_05_01_models.CustomSingleLabelClassificationTaskParameters( + parameters=_v2022_10_01_preview_models.CustomSingleLabelClassificationTaskParameters( project_name=self.project_name, deployment_name=self.deployment_name, logging_opt_out=self.disable_service_logs, @@ -2480,7 +2555,7 @@ def _to_generated(self, api_version, task_id): # pylint: disable=unused-argumen class ClassificationCategory(DictMixin): """ClassificationCategory represents a classification of the input document. - :ivar str category: Custom classification category for the document. + :ivar str category: Classification category for the document. :ivar float confidence_score: Confidence score between 0 and 1 of the recognized classification. """ @@ -2499,6 +2574,12 @@ def __repr__(self): @classmethod def _from_generated(cls, result): + # FIXME: https://github.com/Azure/azure-sdk-for-python/issues/27089 + if isinstance(result, dict): + return cls( + category=result["category"], + confidence_score=result["confidenceScore"] + ) return cls( category=result.category, confidence_score=result.confidence_score @@ -2526,6 +2607,14 @@ class AnalyzeHealthcareEntitiesAction(DictMixin): Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for additional details, and Microsoft Responsible AI principles at https://www.microsoft.com/ai/responsible-ai. + :keyword Optional[str] fhir_version: The FHIR Spec version that the result will use to format the fhir_bundle + on the result object. For additional information see https://www.hl7.org/fhir/overview.html. + The only acceptable values to pass in are None and "4.0.1". The default value is None. + :keyword document_type: Document type that can be provided as input for Fhir Documents. Expect to + have fhir_version provided when used. Behavior of using None enum is the same as not using the + document_type parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". + :paramtype document_type: Optional[str or ~azure.ai.textanalytics.HealthcareDocumentType] :ivar Optional[str] model_version: The model version to use for the analysis. :ivar Optional[str] string_index_type: Specifies the method used to interpret string offsets. `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, @@ -2539,31 +2628,552 @@ class AnalyzeHealthcareEntitiesAction(DictMixin): Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for additional details, and Microsoft Responsible AI principles at https://www.microsoft.com/ai/responsible-ai. + :ivar Optional[str] fhir_version: The FHIR Spec version that the result will use to format the fhir_bundle + on the result object. For additional information see https://www.hl7.org/fhir/overview.html. + The only acceptable values to pass in are None and "4.0.1". The default value is None. + :ivar Optional[str] document_type: Document type that can be provided as input for Fhir Documents. Expect to + have fhir_version provided when used. Behavior of using None enum is the same as not using the + document_type parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". .. versionadded:: 2022-05-01 The *AnalyzeHealthcareEntitiesAction* model. + .. versionadded:: 2022-10-01-preview + The *fhir_version* and *document_type* keyword arguments. """ def __init__(self, **kwargs): self.model_version = kwargs.get("model_version", None) self.string_index_type = kwargs.get("string_index_type", "UnicodeCodePoint") self.disable_service_logs = kwargs.get("disable_service_logs", None) + self.fhir_version = kwargs.get("fhir_version", None) + self.document_type = kwargs.get("document_type", None) def __repr__(self): return ( - "AnalyzeHealthcareEntitiesAction(model_version={}, string_index_type={}, disable_service_logs={})".format( + "AnalyzeHealthcareEntitiesAction(model_version={}, string_index_type={}, disable_service_logs={}, " + "fhir_version={}, document_type={})".format( self.model_version, self.string_index_type, self.disable_service_logs, + self.fhir_version, + self.document_type )[:1024] ) def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument - return _v2022_05_01_models.HealthcareLROTask( + return _v2022_10_01_preview_models.HealthcareLROTask( task_name=task_id, - parameters=_v2022_05_01_models.HealthcareTaskParameters( + parameters=_v2022_10_01_preview_models.HealthcareTaskParameters( model_version=self.model_version, string_index_type=string_index_type_compatibility(self.string_index_type), logging_opt_out=self.disable_service_logs, + fhir_version=self.fhir_version, + document_type=self.document_type, ) ) + + +class ExtractSummaryAction(DictMixin): + """ExtractSummaryAction encapsulates the parameters for starting a long-running Extractive Text + Summarization operation. For a conceptual discussion of extractive summarization, see the service documentation: + https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/extractive-summarization + + :keyword Optional[str] model_version: The model version to use for the analysis. + :keyword Optional[str] string_index_type: Specifies the method used to interpret string offsets. + `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, + you can also pass in `Utf16CodeUnit` or `TextElement_v8`. For additional information + see https://aka.ms/text-analytics-offsets + :keyword Optional[bool] disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :keyword Optional[int] max_sentence_count: Maximum number of sentences to return. Defaults to 3. + :keyword Optional[str] order_by: Possible values include: "Offset", "Rank". Default value: "Offset". + :ivar Optional[str] model_version: The model version to use for the analysis. + :ivar Optional[str] string_index_type: Specifies the method used to interpret string offsets. + `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, + you can also pass in `Utf16CodeUnit` or `TextElement_v8`. For additional information + see https://aka.ms/text-analytics-offsets + :ivar Optional[bool] disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :ivar Optional[int] max_sentence_count: Number of sentences to return. Defaults to 3. + :ivar Optional[str] order_by: Possible values include: "Offset", "Rank". Default value: "Offset". + + .. versionadded:: 2022-10-01-preview + The *ExtractSummaryAction* model. + """ + + def __init__(self, **kwargs): + self.model_version = kwargs.get("model_version", None) + self.string_index_type = kwargs.get("string_index_type", "UnicodeCodePoint") + self.disable_service_logs = kwargs.get("disable_service_logs", None) + self.max_sentence_count = kwargs.get("max_sentence_count", None) + self.order_by = kwargs.get("order_by", None) + + def __repr__(self): + return ( + "ExtractSummaryAction(model_version={}, string_index_type={}, disable_service_logs={}, " + "max_sentence_count={}, order_by={})".format( + self.model_version, + self.string_index_type, + self.disable_service_logs, + self.max_sentence_count, + self.order_by, + )[:1024] + ) + + def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument + return _v2022_10_01_preview_models.ExtractiveSummarizationLROTask( # pylint: disable=no-member + task_name=task_id, + parameters=_v2022_10_01_preview_models.ExtractiveSummarizationTaskParameters( # pylint: disable=no-member + model_version=self.model_version, + string_index_type=string_index_type_compatibility(self.string_index_type), + logging_opt_out=self.disable_service_logs, + sentence_count=self.max_sentence_count, + sort_by=self.order_by, + ) + ) + + +class ExtractSummaryResult(DictMixin): + """ExtractSummaryResult is a result object which contains + the extractive text summarization from a particular document. + + :ivar str id: Unique, non-empty document identifier. + :ivar sentences: A ranked list of sentences representing the extracted summary. + :vartype sentences: list[~azure.ai.textanalytics.SummarySentence] + :ivar warnings: Warnings encountered while processing document. + :vartype warnings: list[~azure.ai.textanalytics.TextAnalyticsWarning] + :ivar statistics: If `show_stats=True` was specified in the request this + field will contain information about the document payload. + :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage] + :ivar bool is_error: Boolean check for error item when iterating over list of + results. Always False for an instance of an ExtractSummaryResult. + :ivar str kind: The text analysis kind - "ExtractiveSummarization". + + .. versionadded:: 2022-10-01-preview + The *ExtractSummaryResult* model. + """ + + def __init__(self, **kwargs): + self.id = kwargs.get("id", None) + self.sentences = kwargs.get("sentences", None) + self.warnings = kwargs.get("warnings", None) + self.statistics = kwargs.get("statistics", None) + self.detected_language = kwargs.get("detected_language", None) + self.is_error: Literal[False] = False + self.kind: Literal["ExtractiveSummarization"] = "ExtractiveSummarization" + + def __repr__(self): + return "ExtractSummaryResult(id={}, sentences={}, warnings={}, statistics={}, detected_language={}," \ + " is_error={})".format( + self.id, + repr(self.sentences), + repr(self.warnings), + repr(self.statistics), + repr(self.detected_language), + self.is_error, + )[ + :1024 + ] + + @classmethod + def _from_generated(cls, summary): + return cls( + id=summary.id, + sentences=[ + SummarySentence._from_generated( # pylint: disable=protected-access + sentence + ) + for sentence in summary.sentences + ], + warnings=[ + TextAnalyticsWarning._from_generated( # pylint: disable=protected-access + w + ) + for w in summary.warnings + ], + statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access + summary.statistics + ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + summary.detected_language + ) if hasattr(summary, "detected_language") and summary.detected_language else None + ) + + +class SummarySentence(DictMixin): + """Represents a single sentence from the extractive text summarization. + + :ivar str text: The extracted sentence text. + :ivar float rank_score: A float value representing the relevance of the sentence within + the summary. Higher values indicate higher importance. + :ivar int offset: The sentence offset from the start of the document. + The value depends on the value of the `string_index_type` parameter + set in the original request, which is UnicodeCodePoint by default. + :ivar int length: The length of the sentence. This value depends on the value of the + `string_index_type` parameter set in the original request, which is UnicodeCodePoint + by default. + + .. versionadded:: 2022-10-01-preview + The *SummarySentence* model. + """ + + def __init__(self, **kwargs): + self.text = kwargs.get("text", None) + self.rank_score = kwargs.get("rank_score", None) + self.offset = kwargs.get("offset", None) + self.length = kwargs.get("length", None) + + def __repr__(self): + return "SummarySentence(text={}, rank_score={}, offset={}, length={})".format( + self.text, + self.rank_score, + self.offset, + self.length, + )[:1024] + + @classmethod + def _from_generated(cls, sentence): + return cls( + text=sentence.text, + rank_score=sentence.rank_score, + offset=sentence.offset, + length=sentence.length, + ) + + +class AbstractSummaryResult(DictMixin): + """AbstractSummaryResult is a result object which contains + the summary generated for a particular document. +. + :ivar id: Unique, non-empty document identifier. Required. + :vartype id: str + :ivar detected_language: If 'language' is set to 'auto' for the document in the request this + field will contain a 2 letter ISO 639-1 representation of the language detected for this + document. + :vartype detected_language: Optional[~azure.ai.textanalytics.DetectedLanguage} + :ivar warnings: Warnings encountered while processing document. Results will still be returned + if there are warnings, but they may not be fully accurate. + :vartype warnings: list[~azure.ai.textanalytics.TextAnalyticsWarning] + :ivar statistics: If `show_stats=True` was specified in the request this + field will contain information about the document payload. + :vartype statistics: + Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar summaries: A list of abstractive summaries. Required. + :vartype summaries: list[~azure.ai.textanalytics.AbstractiveSummary] + :ivar bool is_error: Boolean check for error item when iterating over list of + results. Always False for an instance of a AbstractSummaryResult. + :ivar str kind: The text analysis kind - "AbstractiveSummarization". + + .. versionadded:: 2022-10-01-preview + The *AbstractSummaryResult* model. + """ + + def __init__(self, **kwargs): + self.id = kwargs.get("id", None) + self.detected_language = kwargs.get("detected_language", None) + self.warnings = kwargs.get("warnings", None) + self.statistics = kwargs.get("statistics", None) + self.summaries = kwargs.get("summaries", None) + self.is_error: Literal[False] = False + self.kind: Literal["AbstractiveSummarization"] = "AbstractiveSummarization" + + def __repr__(self): + return "AbstractSummaryResult(id={}, detected_language={}, warnings={}, statistics={}, " \ + "summaries={}, is_error={})".format( + self.id, + repr(self.detected_language), + repr(self.warnings), + repr(self.statistics), + repr(self.summaries), + self.is_error, + )[ + :1024 + ] + + @classmethod + def _from_generated(cls, result): + return cls( + id=result.id, + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + result.detected_language + ) if hasattr(result, "detected_language") and result.detected_language else None, + warnings=[ + TextAnalyticsWarning._from_generated( # pylint: disable=protected-access + w + ) + for w in result.warnings + ], + statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access + result.statistics + ), + summaries=[ + AbstractiveSummary._from_generated(summary) # pylint: disable=protected-access + for summary in result.summaries + ], + ) + + +class AbstractiveSummary(DictMixin): + """An object representing a single summary with context for given document. + + :ivar text: The text of the summary. Required. + :vartype text: str + :ivar contexts: The context list of the summary. + :vartype contexts: Optional[list[~azure.ai.textanalytics.SummaryContext]] + + .. versionadded:: 2022-10-01-preview + The *AbstractiveSummary* model. + """ + + def __init__(self, **kwargs): + self.text = kwargs.get("text", None) + self.contexts = kwargs.get("contexts", None) + + def __repr__(self): + return "AbstractiveSummary(text={}, contexts={})".format( + self.text, + repr(self.contexts), + )[ + :1024 + ] + + @classmethod + def _from_generated(cls, result): + return cls( + text=result.text, + contexts=[ + SummaryContext._from_generated(context) # pylint: disable=protected-access + for context in result.contexts + ] if result.contexts else None + ) + + +class SummaryContext(DictMixin): + """The context of the summary. + + :ivar offset: Start position for the context. Use of different 'stringIndexType' values can + affect the offset returned. Required. + :vartype offset: int + :ivar length: The length of the context. Use of different 'stringIndexType' values can affect + the length returned. Required. + :vartype length: int + + .. versionadded:: 2022-10-01-preview + The *SummaryContext* model. + """ + + def __init__(self, **kwargs): + self.offset = kwargs.get("offset", None) + self.length = kwargs.get("length", None) + + def __repr__(self): + return "SummaryContext(offset={}, length={})".format( + self.offset, + self.length, + )[ + :1024 + ] + + @classmethod + def _from_generated(cls, summary): + return cls( + offset=summary.offset, + length=summary.length + ) + + +class AbstractSummaryAction(DictMixin): + """AbstractSummaryAction encapsulates the parameters for starting a long-running + abstractive summarization operation. + + Abstractive summarization generates a summary for the input documents. Abstractive summarization + is different from extractive summarization in that extractive summarization is the strategy of + concatenating extracted sentences from the input document into a summary, while abstractive + summarization involves paraphrasing the document using novel sentences. + + :keyword Optional[int] sentence_count: It controls the approximate number of sentences in the output summaries. + :keyword phrase_controls: Control the phrases to be used in the summary. + :paramtype phrase_controls: Optional[list[~azure.ai.textanalytics.PhraseControl]] + :keyword Optional[str] model_version: The model version to use for the analysis. + :keyword Optional[str] string_index_type: Specifies the method used to interpret string offsets. + `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, + you can also pass in `Utf16CodeUnit` or `TextElement_v8`. For additional information + see https://aka.ms/text-analytics-offsets + :keyword Optional[bool] disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :ivar Optional[str] model_version: The model version to use for the analysis. + :ivar Optional[str] string_index_type: Specifies the method used to interpret string offsets. + `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, + you can also pass in `Utf16CodeUnit` or `TextElement_v8`. For additional information + see https://aka.ms/text-analytics-offsets + :ivar Optional[bool] disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :ivar Optional[int] sentence_count: It controls the approximate number of sentences in the output summaries. + :ivar phrase_controls: Control the phrases to be used in the summary. + :vartype phrase_controls: Optional[list[~azure.ai.textanalytics.PhraseControl]] + + .. versionadded:: 2022-10-01-preview + The *AbstractSummaryAction* model. + """ + + def __init__(self, **kwargs): + self.sentence_count = kwargs.get("sentence_count", None) + self.phrase_controls = kwargs.get("phrase_controls", None) + self.model_version = kwargs.get("model_version", None) + self.string_index_type = kwargs.get("string_index_type", "UnicodeCodePoint") + self.disable_service_logs = kwargs.get("disable_service_logs", None) + + def __repr__(self): + return "AbstractSummaryAction(model_version={}, string_index_type={}, disable_service_logs={}, " \ + "sentence_count={}, phrase_controls={})".format( + self.model_version, + self.string_index_type, + self.disable_service_logs, + self.sentence_count, + repr(self.phrase_controls), + )[ + :1024 + ] + + def _to_generated(self, api_version, task_id): # pylint: disable=unused-argument + return _v2022_10_01_preview_models.AbstractiveSummarizationLROTask( + task_name=task_id, + parameters=_v2022_10_01_preview_models.AbstractiveSummarizationTaskParameters( + model_version=self.model_version, + string_index_type=string_index_type_compatibility(self.string_index_type), + logging_opt_out=self.disable_service_logs, + sentence_count=self.sentence_count, + phrase_controls=[phrase_control._to_generated() # pylint: disable=protected-access + for phrase_control in self.phrase_controls] + if self.phrase_controls else None, + ) + ) + + +class PhraseControl(DictMixin): + """Control the phrases to be used in the summary. + + :ivar target_phrase: The target phrase to control. Required. + :vartype target_phrase: str + :ivar strategy: The strategy to use in phrase control. Required. Known values are: "encourage", + "discourage", and "disallow". + :vartype strategy: str or ~azure.ai.textanalytics.PhraseControlStrategy + + .. versionadded:: 2022-10-01-preview + The *PhraseControl* model. + """ + + def __init__( + self, + target_phrase: str, + strategy: Union[str, PhraseControlStrategy], + ): + self.target_phrase = target_phrase + self.strategy = strategy + + def __repr__(self): + return "PhraseControl(target_phrase={}, strategy={})".format( + self.target_phrase, + self.strategy, + )[ + :1024 + ] + + def _to_generated(self): + return _v2022_10_01_preview_models.PhraseControl( + target_phrase=self.target_phrase, + strategy=self.strategy + ) + +class DynamicClassificationResult(DictMixin): + """DynamicClassificationResult is a result object which contains + the classifications for a particular document. + + :ivar str id: Unique, non-empty document identifier. + :ivar classifications: Recognized classification results in the document. + :vartype classifications: list[~azure.ai.textanalytics.ClassificationCategory] + :ivar warnings: Warnings encountered while processing document. + :vartype warnings: list[~azure.ai.textanalytics.TextAnalyticsWarning] + :ivar statistics: If `show_stats=True` was specified in the request this + field will contain information about the document payload. + :vartype statistics: Optional[~azure.ai.textanalytics.TextDocumentStatistics] + :ivar bool is_error: Boolean check for error item when iterating over list of + results. Always False for an instance of a DynamicClassificationResult. + :ivar str kind: The text analysis kind - "DynamicClassification". + + .. versionadded:: 2022-10-01-preview + The *DynamicClassificationResult* model. + """ + + def __init__( + self, + **kwargs + ): + self.id = kwargs.get('id', None) + self.classifications = kwargs.get('classifications', None) + self.warnings = kwargs.get('warnings', []) + self.statistics = kwargs.get('statistics', None) + self.is_error: Literal[False] = False + self.kind: Literal["DynamicClassification"] = "DynamicClassification" + + def __repr__(self): + return "DynamicClassificationResult(id={}, classifications={}, warnings={}, statistics={}, " \ + "is_error={})".format( + self.id, + repr(self.classifications), + repr(self.warnings), + repr(self.statistics), + self.is_error, + )[ + :1024 + ] + + @classmethod + def _from_generated(cls, result): + # FIXME: https://github.com/Azure/azure-sdk-for-python/issues/27089 + classes = result.class_property or result.additional_properties.get("classifications", None) + return cls( + id=result.id, + classifications=[ + ClassificationCategory._from_generated(c) # pylint: disable=protected-access + for c in classes + ], + warnings=[ + TextAnalyticsWarning._from_generated( # pylint: disable=protected-access + w + ) + for w in result.warnings + ], + statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access + result.statistics + ), + ) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_request_handlers.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_request_handlers.py index bff5430f4cfa..f49494e125d1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_request_handlers.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_request_handlers.py @@ -97,4 +97,8 @@ def _determine_action_type(action): # pylint: disable=too-many-return-statement return _AnalyzeActionsType.MULTI_LABEL_CLASSIFY if action.__class__.__name__ == "HealthcareLROTask": return _AnalyzeActionsType.ANALYZE_HEALTHCARE_ENTITIES + if action.__class__.__name__ == "ExtractiveSummarizationLROTask": + return _AnalyzeActionsType.EXTRACT_SUMMARY + if action.__class__.__name__ == "AbstractiveSummarizationLROTask": + return _AnalyzeActionsType.ABSTRACT_SUMMARY return _AnalyzeActionsType.EXTRACT_KEY_PHRASES diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_response_handlers.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_response_handlers.py index 082bc4aaf041..19207a3b0a64 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_response_handlers.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_response_handlers.py @@ -36,6 +36,9 @@ RecognizeCustomEntitiesResult, ClassifyDocumentResult, ActionPointerKind, + ExtractSummaryResult, + AbstractSummaryResult, + DynamicClassificationResult, ) @@ -130,6 +133,15 @@ def wrapper( return choose_wrapper +@prepare_result +def abstract_summary_result( + summary, results, *args, **kwargs +): # pylint: disable=unused-argument + return AbstractSummaryResult._from_generated( # pylint: disable=protected-access + summary + ) + + @prepare_result def language_result(language, results): # pylint: disable=unused-argument return DetectLanguageResult( @@ -164,6 +176,9 @@ def entities_result( statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access entity.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + entity.detected_language + ) if hasattr(entity, "detected_language") and entity.detected_language else None ) @@ -184,6 +199,9 @@ def linked_entities_result( statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access entity.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + entity.detected_language + ) if hasattr(entity, "detected_language") and entity.detected_language else None ) @@ -201,6 +219,9 @@ def key_phrases_result( statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access phrases.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + phrases.detected_language + ) if hasattr(phrases, "detected_language") and phrases.detected_language else None ) @@ -227,6 +248,9 @@ def sentiment_result( ) for s in sentiment.sentences ], + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + sentiment.detected_language + ) if hasattr(sentiment, "detected_language") and sentiment.detected_language else None ) @@ -250,6 +274,9 @@ def pii_entities_result( statistics=TextDocumentStatistics._from_generated( # pylint: disable=protected-access entity.statistics ), + detected_language=DetectedLanguage._from_generated( # pylint: disable=protected-access + entity.detected_language + ) if hasattr(entity, "detected_language") and entity.detected_language else None ) @@ -262,6 +289,15 @@ def healthcare_result( ) +@prepare_result +def summary_result( + summary, results, *args, **kwargs +): # pylint: disable=unused-argument + return ExtractSummaryResult._from_generated( # pylint: disable=protected-access + summary + ) + + @prepare_result def custom_entities_result( custom_entities, results, *args, **kwargs @@ -280,6 +316,15 @@ def classify_document_result( ) +@prepare_result +def dynamic_classification_result( + categories, results, *args, **kwargs +): # pylint: disable=unused-argument + return DynamicClassificationResult._from_generated( # pylint: disable=protected-access + categories + ) + + def healthcare_extract_page_data( doc_id_order, obj, health_job_state ): # pylint: disable=unused-argument @@ -313,6 +358,10 @@ def _get_deserialization_callback_from_task_type(task_type): # pylint: disable= return classify_document_result if task_type == _AnalyzeActionsType.ANALYZE_HEALTHCARE_ENTITIES: return healthcare_result + if task_type == _AnalyzeActionsType.EXTRACT_SUMMARY: + return summary_result + if task_type == _AnalyzeActionsType.ABSTRACT_SUMMARY: + return abstract_summary_result return key_phrases_result diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_text_analytics_client.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_text_analytics_client.py index 9089ce06d2c0..67543f007e5d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_text_analytics_client.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_text_analytics_client.py @@ -34,7 +34,8 @@ pii_entities_result, healthcare_paged_result, analyze_paged_result, - _get_result_from_continuation_token + _get_result_from_continuation_token, + dynamic_classification_result, ) from ._lro import ( @@ -65,6 +66,11 @@ ClassifyDocumentResult, AnalyzeHealthcareEntitiesAction, _AnalyzeActionsType, + ExtractSummaryAction, + ExtractSummaryResult, + AbstractSummaryAction, + AbstractSummaryResult, + DynamicClassificationResult, ) from ._check import is_language_api, string_index_type_compatibility @@ -81,6 +87,8 @@ RecognizeCustomEntitiesResult, ClassifyDocumentResult, AnalyzeHealthcareEntitiesResult, + ExtractSummaryResult, + AbstractSummaryResult, DocumentError, ] ] @@ -614,7 +622,10 @@ def _healthcare_result_callback( @distributed_trace @validate_multiapi_args( version_method_added="v3.1", - args_mapping={"2022-05-01": ["display_name"]} + args_mapping={ + "2022-10-01-preview": ["fhir_version", "document_type", "autodetect_default_language"], + "2022-05-01": ["display_name"] + } ) def begin_analyze_healthcare_entities( self, @@ -643,9 +654,12 @@ def begin_analyze_healthcare_entities( :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword str display_name: An optional display name to set for the requested analysis. :keyword str string_index_type: Specifies the method used to interpret string offsets. `UnicodeCodePoint`, the Python encoding, is the default. To override the Python default, @@ -664,6 +678,14 @@ def begin_analyze_healthcare_entities( Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for additional details, and Microsoft Responsible AI principles at https://www.microsoft.com/ai/responsible-ai. + :keyword str fhir_version: The FHIR Spec version that the result will use to format the fhir_bundle + on the result object. For additional information see https://www.hl7.org/fhir/overview.html. + The only acceptable values to pass in are None and "4.0.1". The default value is None. + :keyword document_type: Document type that can be provided as input for Fhir Documents. Expect to + have fhir_version provided when used. Behavior of using None enum is the same as not using the + document_type parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". + :paramtype document_type: str or ~azure.ai.textanalytics.HealthcareDocumentType :return: An instance of an AnalyzeHealthcareEntitiesLROPoller. Call `result()` on the this object to return a heterogeneous pageable of :class:`~azure.ai.textanalytics.AnalyzeHealthcareEntitiesResult` and @@ -677,6 +699,8 @@ def begin_analyze_healthcare_entities( The *begin_analyze_healthcare_entities* client method. .. versionadded:: 2022-05-01 The *display_name* keyword argument. + .. versionadded:: 2022-10-01-preview + The *fhir_version*, *document_type*, and *autodetect_default_language* keyword arguments. .. admonition:: Example: @@ -696,6 +720,9 @@ def begin_analyze_healthcare_entities( string_index_type = kwargs.pop("string_index_type", self._string_index_type_default) disable_service_logs = kwargs.pop("disable_service_logs", None) display_name = kwargs.pop("display_name", None) + fhir_version = kwargs.pop("fhir_version", None) + document_type = kwargs.pop("document_type", None) + autodetect_default_language = kwargs.pop("autodetect_default_language", None) if continuation_token: return cast( @@ -738,6 +765,7 @@ def begin_analyze_healthcare_entities( body=models.AnalyzeTextJobsInput( analysis_input=docs, display_name=display_name, + default_language=autodetect_default_language, tasks=[ models.HealthcareLROTask( task_name="0", @@ -745,6 +773,8 @@ def begin_analyze_healthcare_entities( model_version=model_version, logging_opt_out=disable_service_logs, string_index_type=string_index_type_compatibility(string_index_type), + fhir_version=fhir_version, + document_type=document_type, ) ) ] @@ -1042,7 +1072,10 @@ def _analyze_result_callback( @distributed_trace @validate_multiapi_args( version_method_added="v3.1", - custom_wrapper=check_for_unsupported_actions_types + custom_wrapper=check_for_unsupported_actions_types, + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) def begin_analyze_actions( self, @@ -1058,6 +1091,8 @@ def begin_analyze_actions( SingleLabelClassifyAction, MultiLabelClassifyAction, AnalyzeHealthcareEntitiesAction, + ExtractSummaryAction, + AbstractSummaryAction, ] ], **kwargs: Any, @@ -1073,6 +1108,8 @@ def begin_analyze_actions( RecognizeCustomEntitiesResult, ClassifyDocumentResult, AnalyzeHealthcareEntitiesResult, + ExtractSummaryResult, + AbstractSummaryResult, DocumentError, ] ] @@ -1101,13 +1138,17 @@ def begin_analyze_actions( list[RecognizeEntitiesAction or RecognizePiiEntitiesAction or ExtractKeyPhrasesAction or RecognizeLinkedEntitiesAction or AnalyzeSentimentAction or RecognizeCustomEntitiesAction or SingleLabelClassifyAction or - MultiLabelClassifyAction or AnalyzeHealthcareEntitiesAction] + MultiLabelClassifyAction or AnalyzeHealthcareEntitiesAction or ExtractSummaryAction + or AbstractSummaryAction] :keyword str display_name: An optional display name to set for the requested analysis. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword int polling_interval: Waiting time between two polls for LRO operations if no Retry-After header is present. Defaults to 5 seconds. @@ -1130,7 +1171,8 @@ def begin_analyze_actions( ~azure.ai.textanalytics.TextAnalysisLROPoller[~azure.core.paging.ItemPaged[ list[RecognizeEntitiesResult or RecognizeLinkedEntitiesResult or RecognizePiiEntitiesResult or ExtractKeyPhrasesResult or AnalyzeSentimentResult or RecognizeCustomEntitiesResult - or ClassifyDocumentResult or AnalyzeHealthcareEntitiesResult or DocumentError]]] + or ClassifyDocumentResult or AnalyzeHealthcareEntitiesResult or ExtractSummaryResult + or AbstractSummaryResult or DocumentError]]] :raises ~azure.core.exceptions.HttpResponseError or TypeError or ValueError: .. versionadded:: v3.1 @@ -1140,6 +1182,10 @@ def begin_analyze_actions( *MultiLabelClassifyAction*, and *AnalyzeHealthcareEntitiesAction* input options and the corresponding *RecognizeCustomEntitiesResult*, *ClassifyDocumentResult*, and *AnalyzeHealthcareEntitiesResult* result objects + .. versionadded:: 2022-10-01-preview + The *ExtractSummaryAction* and *AbstractSummaryAction* input options and the corresponding + *ExtractSummaryResult* and *AbstractSummaryResult* result objects. + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1159,6 +1205,7 @@ def begin_analyze_actions( polling_interval = kwargs.pop("polling_interval", 5) language = language_arg if language_arg is not None else self._default_language bespoke = kwargs.pop("bespoke", False) + autodetect_default_language = kwargs.pop("autodetect_default_language", None) if continuation_token: return cast( @@ -1214,6 +1261,7 @@ def begin_analyze_actions( body=models.AnalyzeTextJobsInput( analysis_input=docs, display_name=display_name, + default_language=autodetect_default_language, tasks=generated_tasks ), cls=response_cls, @@ -1288,13 +1336,16 @@ def begin_analyze_actions( @distributed_trace @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) def begin_recognize_custom_entities( self, documents: Union[List[str], List[TextDocumentInput], List[Dict[str, str]]], - project_name, - deployment_name, + project_name: str, + deployment_name: str, **kwargs: Any, ) -> TextAnalysisLROPoller[ItemPaged[Union[RecognizeCustomEntitiesResult, DocumentError]]]: """Start a long-running custom named entity recognition operation. @@ -1313,9 +1364,12 @@ def begin_recognize_custom_entities( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1347,6 +1401,8 @@ def begin_recognize_custom_entities( .. versionadded:: 2022-05-01 The *begin_recognize_custom_entities* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1406,13 +1462,16 @@ def begin_recognize_custom_entities( @distributed_trace @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) def begin_single_label_classify( self, documents: Union[List[str], List[TextDocumentInput], List[Dict[str, str]]], - project_name, - deployment_name, + project_name: str, + deployment_name: str, **kwargs: Any, ) -> TextAnalysisLROPoller[ItemPaged[Union[ClassifyDocumentResult, DocumentError]]]: """Start a long-running custom single label classification operation. @@ -1431,9 +1490,12 @@ def begin_single_label_classify( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1461,6 +1523,8 @@ def begin_single_label_classify( .. versionadded:: 2022-05-01 The *begin_single_label_classify* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1518,13 +1582,16 @@ def begin_single_label_classify( @distributed_trace @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) def begin_multi_label_classify( self, documents: Union[List[str], List[TextDocumentInput], List[Dict[str, str]]], - project_name, - deployment_name, + project_name: str, + deployment_name: str, **kwargs: Any, ) -> TextAnalysisLROPoller[ItemPaged[Union[ClassifyDocumentResult, DocumentError]]]: """Start a long-running custom multi label classification operation. @@ -1543,9 +1610,12 @@ def begin_multi_label_classify( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1573,6 +1643,8 @@ def begin_multi_label_classify( .. versionadded:: 2022-05-01 The *begin_multi_label_classify* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1627,3 +1699,100 @@ def begin_multi_label_classify( except HttpResponseError as error: return process_http_response_error(error) + + @distributed_trace + @validate_multiapi_args( + version_method_added="2022-10-01-preview", + ) + def dynamic_classification( + self, + documents: Union[List[str], List[TextDocumentInput], List[Dict[str, str]]], + categories: List[str], + **kwargs: Any, + ) -> List[Union[DynamicClassificationResult, DocumentError]]: + """Perform dynamic classification on a batch of documents. + + On the fly classification of the input documents into one or multiple categories. + Assigns either one or multiple categories per document. This type of classification + doesn't require model training. + + See https://aka.ms/azsdk/textanalytics/data-limits for service data limits. + + :param documents: The set of documents to process as part of this batch. + If you wish to specify the ID and language on a per-item basis you must + use as input a list[:class:`~azure.ai.textanalytics.TextDocumentInput`] or a list + of dict representations of :class:`~azure.ai.textanalytics.TextDocumentInput`, + like `{"id": "1", "language": "en", "text": "hello world"}`. + :type documents: + list[str] or list[~azure.ai.textanalytics.TextDocumentInput] or list[dict[str, str]] + :param list[str] categories: A list of categories to which input is classified to. + :keyword classification_type: Specifies either one or multiple categories per document. Defaults + to multi classification which may return more than one class for each document. Known values + are: "Single" and "Multi". + :paramtype classification_type: str or ~azure.ai.textanalytics.ClassificationType + :keyword str language: The 2 letter ISO 639-1 representation of language for the + entire batch. For example, use "en" for English; "es" for Spanish etc. + If not set, uses "en" for English as default. Per-document language will + take precedence over whole batch language. See https://aka.ms/talangs for + supported languages in Language API. + :keyword str model_version: This value indicates which model will + be used for scoring, e.g. "latest", "2019-10-01". If a model-version + is not specified, the API will default to the latest, non-preview version. + See here for more info: https://aka.ms/text-analytics-model-versioning + :keyword bool show_stats: If set to true, response will contain document + level statistics in the `statistics` field of the document-level response. + :keyword bool disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :return: The combined list of :class:`~azure.ai.textanalytics.DynamicClassificationResult` and + :class:`~azure.ai.textanalytics.DocumentError` in the order the original documents + were passed in. + :rtype: list[~azure.ai.textanalytics.DynamicClassificationResult or ~azure.ai.textanalytics.DocumentError] + :raises ~azure.core.exceptions.HttpResponseError: + + .. versionadded:: 2022-10-01-preview + The *dynamic_classification* client method. + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_dynamic_classification.py + :start-after: [START dynamic_classification] + :end-before: [END dynamic_classification] + :language: python + :dedent: 4 + :caption: Perform dynamic classification on a batch of documents. + """ + language_arg = kwargs.pop("language", None) + language = language_arg if language_arg is not None else self._default_language + docs = _validate_input(documents, "language", language) + model_version = kwargs.pop("model_version", None) + show_stats = kwargs.pop("show_stats", None) + disable_service_logs = kwargs.pop("disable_service_logs", None) + classification_type = kwargs.pop("classification_type", None) + + try: + models = self._client.models(api_version=self._api_version) + return cast( + List[Union[DynamicClassificationResult, DocumentError]], + self._client.analyze_text( + body=models.AnalyzeTextDynamicClassificationInput( + analysis_input={"documents": docs}, + parameters=models.DynamicClassificationTaskParameters( + categories=categories, + logging_opt_out=disable_service_logs, + model_version=model_version, + classification_type=classification_type, + ) + ), + show_stats=show_stats, + cls=kwargs.pop("cls", dynamic_classification_result), + **kwargs + ) + ) + except HttpResponseError as error: + return process_http_response_error(error) diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_validate.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_validate.py index 8d600d08fdde..130e7c04dc31 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_validate.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_validate.py @@ -27,6 +27,11 @@ def check_for_unsupported_actions_types(*args, **kwargs): return actions_version_mapping = { + "2022-10-01-preview": + [ + "ExtractSummaryAction", + "AbstractSummaryAction", + ], "2022-05-01": [ "RecognizeCustomEntitiesAction", diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_version.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_version.py index d17e35965fbc..bfe2b98a039a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_version.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_version.py @@ -3,6 +3,6 @@ # Licensed under the MIT License. # ------------------------------------ -VERSION = "5.2.2" -DEFAULT_API_VERSION = "2022-05-01" -VERSIONS_SUPPORTED = ["v3.0", "v3.1", "2022-05-01"] +VERSION = "5.3.0b1" +DEFAULT_API_VERSION = "2022-10-01-preview" +VERSIONS_SUPPORTED = ["v3.0", "v3.1", "2022-05-01", "2022-10-01-preview"] diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_lro_async.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_lro_async.py index 9425915c1d7d..e059a4f35c21 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_lro_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_lro_async.py @@ -14,8 +14,6 @@ from azure.core.polling.async_base_polling import AsyncLROBasePolling from azure.core.tracing.decorator_async import distributed_trace_async from .._lro import TextAnalyticsOperationResourcePolling -from .._generated.v2022_05_01.models import JobState - _FINISHED = frozenset(["succeeded", "cancelled", "failed", "partiallycompleted", "partiallysucceeded"]) _FAILED = frozenset(["failed"]) @@ -172,6 +170,7 @@ def __init__(self, *args, **kwargs): @property def _current_body(self): + from .._generated.models import JobState return JobState.deserialize(self._pipeline_response) @property @@ -334,6 +333,7 @@ def __init__(self, *args, **kwargs): @property def _current_body(self): + from .._generated.models import JobState return JobState.deserialize(self._pipeline_response) @property diff --git a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_text_analytics_client_async.py b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_text_analytics_client_async.py index a32b917497e3..68280f86659e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_text_analytics_client_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/aio/_text_analytics_client_async.py @@ -25,7 +25,8 @@ sentiment_result, language_result, pii_entities_result, - _get_result_from_continuation_token + _get_result_from_continuation_token, + dynamic_classification_result, ) from ._response_handlers_async import healthcare_paged_result, analyze_paged_result from .._models import ( @@ -50,7 +51,12 @@ SingleLabelClassifyAction, MultiLabelClassifyAction, ClassifyDocumentResult, - AnalyzeHealthcareEntitiesAction + AnalyzeHealthcareEntitiesAction, + ExtractSummaryAction, + ExtractSummaryResult, + AbstractSummaryAction, + AbstractSummaryResult, + DynamicClassificationResult, ) from .._check import is_language_api, string_index_type_compatibility from .._lro import TextAnalyticsOperationResourcePolling @@ -75,6 +81,8 @@ RecognizeCustomEntitiesResult, ClassifyDocumentResult, AnalyzeHealthcareEntitiesResult, + ExtractSummaryResult, + AbstractSummaryResult, DocumentError, ] ] @@ -831,7 +839,10 @@ def _healthcare_result_callback( @distributed_trace_async @validate_multiapi_args( version_method_added="v3.1", - args_mapping={"2022-05-01": ["display_name"]} + args_mapping={ + "2022-10-01-preview": ["fhir_version", "document_type", "autodetect_default_language"], + "2022-05-01": ["display_name"] + } ) async def begin_analyze_healthcare_entities( self, @@ -862,9 +873,12 @@ async def begin_analyze_healthcare_entities( :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Text Analytics API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword str display_name: An optional display name to set for the requested analysis. :keyword str string_index_type: Specifies the method used to interpret string offsets. Can be one of 'UnicodeCodePoint' (default), 'Utf16CodeUnit', or 'TextElement_v8'. @@ -882,6 +896,14 @@ async def begin_analyze_healthcare_entities( Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for additional details, and Microsoft Responsible AI principles at https://www.microsoft.com/ai/responsible-ai. + :keyword str fhir_version: The FHIR Spec version that the result will use to format the fhir_bundle + on the result object. For additional information see https://www.hl7.org/fhir/overview.html. + The only acceptable values to pass in are None and "4.0.1". The default value is None. + :keyword document_type: Document type that can be provided as input for Fhir Documents. Expect to + have fhir_version provided when used. Behavior of using None enum is the same as not using the + document_type parameter. Known values are: "None", "ClinicalTrial", "DischargeSummary", + "ProgressNote", "HistoryAndPhysical", "Consult", "Imaging", "Pathology", and "ProcedureNote". + :paramtype document_type: str or ~azure.ai.textanalytics.HealthcareDocumentType :return: An instance of an AsyncAnalyzeHealthcareEntitiesLROPoller. Call `result()` on the poller object to return a heterogeneous pageable of :class:`~azure.ai.textanalytics.AnalyzeHealthcareEntitiesResult` and @@ -895,6 +917,8 @@ async def begin_analyze_healthcare_entities( The *begin_analyze_healthcare_entities* client method. .. versionadded:: 2022-05-01 The *display_name* keyword argument. + .. versionadded:: 2022-10-01-preview + The *fhir_version*, *document_type*, and *autodetect_default_language* keyword arguments. .. admonition:: Example: @@ -914,6 +938,9 @@ async def begin_analyze_healthcare_entities( string_index_type = kwargs.pop("string_index_type", self._string_code_unit) disable_service_logs = kwargs.pop("disable_service_logs", None) display_name = kwargs.pop("display_name", None) + fhir_version = kwargs.pop("fhir_version", None) + document_type = kwargs.pop("document_type", None) + autodetect_default_language = kwargs.pop("autodetect_default_language", None) if continuation_token: return cast( @@ -956,6 +983,7 @@ async def begin_analyze_healthcare_entities( body=models.AnalyzeTextJobsInput( analysis_input=docs, display_name=display_name, + default_language=autodetect_default_language, tasks=[ models.HealthcareLROTask( task_name="0", @@ -963,6 +991,8 @@ async def begin_analyze_healthcare_entities( model_version=model_version, logging_opt_out=disable_service_logs, string_index_type=string_index_type_compatibility(string_index_type), + fhir_version=fhir_version, + document_type=document_type, ) ) ] @@ -1037,7 +1067,10 @@ def _analyze_result_callback( @distributed_trace_async @validate_multiapi_args( version_method_added="v3.1", - custom_wrapper=check_for_unsupported_actions_types + custom_wrapper=check_for_unsupported_actions_types, + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) async def begin_analyze_actions( self, @@ -1053,6 +1086,8 @@ async def begin_analyze_actions( SingleLabelClassifyAction, MultiLabelClassifyAction, AnalyzeHealthcareEntitiesAction, + ExtractSummaryAction, + AbstractSummaryAction, ] ], **kwargs: Any, @@ -1068,6 +1103,8 @@ async def begin_analyze_actions( RecognizeCustomEntitiesResult, ClassifyDocumentResult, AnalyzeHealthcareEntitiesResult, + ExtractSummaryResult, + AbstractSummaryResult, DocumentError, ] ] @@ -1096,13 +1133,17 @@ async def begin_analyze_actions( list[RecognizeEntitiesAction or RecognizePiiEntitiesAction or ExtractKeyPhrasesAction or RecognizeLinkedEntitiesAction or AnalyzeSentimentAction or RecognizeCustomEntitiesAction or SingleLabelClassifyAction or - MultiLabelClassifyAction or AnalyzeHealthcareEntitiesAction] + MultiLabelClassifyAction or AnalyzeHealthcareEntitiesAction or + AbstractSummaryAction or ExtractSummaryAction] :keyword str display_name: An optional display name to set for the requested analysis. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword int polling_interval: Waiting time between two polls for LRO operations if no Retry-After header is present. Defaults to 5 seconds. @@ -1125,7 +1166,8 @@ async def begin_analyze_actions( ~azure.ai.textanalytics.aio.AsyncTextAnalysisLROPoller[~azure.core.async_paging.AsyncItemPaged[ list[RecognizeEntitiesResult or RecognizeLinkedEntitiesResult or RecognizePiiEntitiesResult or ExtractKeyPhrasesResult or AnalyzeSentimentResult or RecognizeCustomEntitiesResult - or ClassifyDocumentResult or AnalyzeHealthcareEntitiesResult or DocumentError]]] + or ClassifyDocumentResult or AnalyzeHealthcareEntitiesResult or ExtractSummaryResult + or AbstractSummaryResult or DocumentError]]] :raises ~azure.core.exceptions.HttpResponseError or TypeError or ValueError: .. versionadded:: v3.1 @@ -1135,6 +1177,10 @@ async def begin_analyze_actions( *MultiLabelClassifyAction*, and *AnalyzeHealthcareEntitiesAction* input options and the corresponding *RecognizeCustomEntitiesResult*, *ClassifyDocumentResult*, and *AnalyzeHealthcareEntitiesResult* result objects + .. versionadded:: 2022-10-01-preview + The *ExtractSummaryAction* and *AbstractSummaryAction* input options and the corresponding + *ExtractSummaryResult* and *AbstractSummaryResult* result objects. + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1155,6 +1201,7 @@ async def begin_analyze_actions( polling_interval = kwargs.pop("polling_interval", 5) continuation_token = kwargs.pop("continuation_token", None) bespoke = kwargs.pop("bespoke", False) + autodetect_default_language = kwargs.pop("autodetect_default_language", None) if continuation_token: return cast( @@ -1211,6 +1258,7 @@ async def begin_analyze_actions( body=models.AnalyzeTextJobsInput( analysis_input=docs, display_name=display_name, + default_language=autodetect_default_language, tasks=generated_tasks ), cls=response_cls, @@ -1285,7 +1333,10 @@ async def begin_analyze_actions( @distributed_trace_async @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) async def begin_recognize_custom_entities( self, @@ -1310,9 +1361,12 @@ async def begin_recognize_custom_entities( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1344,6 +1398,8 @@ async def begin_recognize_custom_entities( .. versionadded:: 2022-05-01 The *begin_recognize_custom_entities* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1403,7 +1459,10 @@ async def begin_recognize_custom_entities( @distributed_trace_async @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) async def begin_single_label_classify( self, @@ -1428,9 +1487,12 @@ async def begin_single_label_classify( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1458,6 +1520,8 @@ async def begin_single_label_classify( .. versionadded:: 2022-05-01 The *begin_single_label_classify* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1515,7 +1579,10 @@ async def begin_single_label_classify( @distributed_trace_async @validate_multiapi_args( - version_method_added="2022-05-01" + version_method_added="2022-05-01", + args_mapping={ + "2022-10-01-preview": ["autodetect_default_language"], + } ) async def begin_multi_label_classify( self, @@ -1540,9 +1607,12 @@ async def begin_multi_label_classify( :param str deployment_name: This field indicates the deployment name for the model. :keyword str language: The 2 letter ISO 639-1 representation of language for the entire batch. For example, use "en" for English; "es" for Spanish etc. - If not set, uses "en" for English as default. Per-document language will - take precedence over whole batch language. See https://aka.ms/talangs for - supported languages in Language API. + For automatic language detection, use "auto" (Only supported by API version + 2022-10-01-preview and newer). If not set, uses "en" for English as default. + Per-document language will take precedence over whole batch language. + See https://aka.ms/talangs for supported languages in Language API. + :keyword autodetect_default_language: Default/fallback language to use for documents requesting + automatic language detection. :keyword bool show_stats: If set to true, response will contain document level statistics. :keyword bool disable_service_logs: If set to true, you opt-out of having your text input logged on the service side for troubleshooting. By default, the Language service logs your @@ -1570,6 +1640,8 @@ async def begin_multi_label_classify( .. versionadded:: 2022-05-01 The *begin_multi_label_classify* client method. + .. versionadded:: 2022-10-01-preview + The *autodetect_default_language* keyword argument. .. admonition:: Example: @@ -1624,3 +1696,100 @@ async def begin_multi_label_classify( except HttpResponseError as error: return process_http_response_error(error) + + @distributed_trace_async + @validate_multiapi_args( + version_method_added="2022-10-01-preview", + ) + async def dynamic_classification( + self, + documents: Union[List[str], List[TextDocumentInput], List[Dict[str, str]]], + categories: List[str], + **kwargs: Any, + ) -> List[Union[DynamicClassificationResult, DocumentError]]: + """Perform dynamic classification on a batch of documents. + + On the fly classification of the input documents into one or multiple categories. + Assigns either one or multiple categories per document. This type of classification + doesn't require model training. + + See https://aka.ms/azsdk/textanalytics/data-limits for service data limits. + + :param documents: The set of documents to process as part of this batch. + If you wish to specify the ID and language on a per-item basis you must + use as input a list[:class:`~azure.ai.textanalytics.TextDocumentInput`] or a list + of dict representations of :class:`~azure.ai.textanalytics.TextDocumentInput`, + like `{"id": "1", "language": "en", "text": "hello world"}`. + :type documents: + list[str] or list[~azure.ai.textanalytics.TextDocumentInput] or list[dict[str, str]] + :param list[str] categories: A list of categories to which input is classified to. + :keyword classification_type: Specifies either one or multiple categories per document. Defaults + to multi classification which may return more than one class for each document. Known values + are: "Single" and "Multi". + :paramtype classification_type: str or ~azure.ai.textanalytics.ClassificationType + :keyword str language: The 2 letter ISO 639-1 representation of language for the + entire batch. For example, use "en" for English; "es" for Spanish etc. + If not set, uses "en" for English as default. Per-document language will + take precedence over whole batch language. See https://aka.ms/talangs for + supported languages in Language API. + :keyword str model_version: This value indicates which model will + be used for scoring, e.g. "latest", "2019-10-01". If a model-version + is not specified, the API will default to the latest, non-preview version. + See here for more info: https://aka.ms/text-analytics-model-versioning + :keyword bool show_stats: If set to true, response will contain document + level statistics in the `statistics` field of the document-level response. + :keyword bool disable_service_logs: If set to true, you opt-out of having your text input + logged on the service side for troubleshooting. By default, the Language service logs your + input text for 48 hours, solely to allow for troubleshooting issues in providing you with + the service's natural language processing functions. Setting this parameter to true, + disables input logging and may limit our ability to remediate issues that occur. Please see + Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for + additional details, and Microsoft Responsible AI principles at + https://www.microsoft.com/ai/responsible-ai. + :return: The combined list of :class:`~azure.ai.textanalytics.DynamicClassificationResult` and + :class:`~azure.ai.textanalytics.DocumentError` in the order the original documents + were passed in. + :rtype: list[~azure.ai.textanalytics.DynamicClassificationResult or ~azure.ai.textanalytics.DocumentError] + :raises ~azure.core.exceptions.HttpResponseError: + + .. versionadded:: 2022-10-01-preview + The *dynamic_classification* client method. + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_dynamic_classification_async.py + :start-after: [START dynamic_classification_async] + :end-before: [END dynamic_classification_async] + :language: python + :dedent: 4 + :caption: Perform dynamic classification on a batch of documents. + """ + language_arg = kwargs.pop("language", None) + language = language_arg if language_arg is not None else self._default_language + docs = _validate_input(documents, "language", language) + model_version = kwargs.pop("model_version", None) + show_stats = kwargs.pop("show_stats", None) + disable_service_logs = kwargs.pop("disable_service_logs", None) + classification_type = kwargs.pop("classification_type", None) + + try: + models = self._client.models(api_version=self._api_version) + return cast( + List[Union[DynamicClassificationResult, DocumentError]], + await self._client.analyze_text( + body=models.AnalyzeTextDynamicClassificationInput( + analysis_input={"documents": docs}, + parameters=models.DynamicClassificationTaskParameters( + categories=categories, + logging_opt_out=disable_service_logs, + model_version=model_version, + classification_type=classification_type, + ) + ), + show_stats=show_stats, + cls=kwargs.pop("cls", dynamic_classification_result), + **kwargs + ) + ) + except HttpResponseError as error: + return process_http_response_error(error) diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/README.md b/sdk/textanalytics/azure-ai-textanalytics/samples/README.md index 3b2fdf7ea289..761df1709ea8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/samples/README.md +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/README.md @@ -34,6 +34,9 @@ These sample programs show common scenarios for the Text Analytics client's offe |[sample_multi_label_classify.py][multi_label_classify_sample] and [sample_multi_label_classify_async.py][multi_label_classify_sample_async]|Use a custom model to classify documents into multiple categories| |[sample_model_version.py][sample_model_version] and [sample_model_version_async.py][sample_model_version_async]|Set the model version for pre-built Text Analytics models| |[sample_analyze_healthcare_action.py][sample_analyze_healthcare_action] and [sample_analyze_healthcare_action_async.py][sample_analyze_healthcare_action_async]|Run a healthcare and PII analysis together| +|[sample_extract_summary.py][extract_summary_sample] and [sample_extract_summary_async.py][extract_summary_sample_async]|As part of the analyze API, run extractive text summarization on documents| +|[sample_abstract_summary.py][abstract_summary_sample] and [sample_abstract_summary_async.py][abstract_summary_sample_async]|As part of the analyze API, run abstractive text summarization on documents| +|[sample_dynamic_classification.py][dynamic_classification_sample] and [sample_dynamic_classification_async.py][dynamic_classification_sample_async]|Dynamically classify documents without needing to train a model.| ## Prerequisites * Python 3.7 or later is required to use this package @@ -112,6 +115,12 @@ what you can do with the Azure Text Analytics client library. [sample_model_version_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_model_version_async.py [sample_analyze_healthcare_action]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py [sample_analyze_healthcare_action_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_analyze_healthcare_action_async.py +[extract_summary_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_extract_summary.py +[extract_summary_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_extract_summary_async.py +[abstract_summary_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_abstract_summary.py +[abstract_summary_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_abstract_summary_async.py +[dynamic_classification_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/sample_dynamic_classification.py +[dynamic_classification_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_dynamic_classification_async.py [pip]: https://pypi.org/project/pip/ [azure_subscription]: https://azure.microsoft.com/free/ [azure_language_account]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account?tabs=singleservice%2Cwindows diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_abstract_summary_async.py b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_abstract_summary_async.py new file mode 100644 index 000000000000..bbd3da0cc0de --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_abstract_summary_async.py @@ -0,0 +1,86 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_abstract_summary_async.py + +DESCRIPTION: + This sample demonstrates how to submit text documents for abstractive text summarization. + Abstractive summarization is available as an action type through the begin_analyze_actions API. + + Abstractive summarization generates a summary that may not use the same words as those in + the document, but captures the main idea. + +USAGE: + python sample_abstract_summary_async.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +import os +import asyncio + + +async def sample_abstractive_summarization_async() -> None: + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics.aio import TextAnalyticsClient + from azure.ai.textanalytics import AbstractSummaryAction + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + + document = [ + "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, " + "human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive " + "Services, I have been working with a team of amazing scientists and engineers to turn this quest into a " + "reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of " + "human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the " + "intersection of all three, there's magic-what we call XYZ-code as illustrated in Figure 1-a joint " + "representation to create more powerful AI that can speak, hear, see, and understand humans better. " + "We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, " + "spanning modalities and languages. The goal is to have pretrained models that can jointly learn " + "representations to support a broad range of downstream AI tasks, much in the way humans do today. " + "Over the past five years, we have achieved human performance on benchmarks in conversational speech " + "recognition, machine translation, conversational question answering, machine reading comprehension, " + "and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious " + "aspiration to produce a leap in AI capabilities, achieving multisensory and multilingual learning that " + "is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational " + "component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks." + ] + async with text_analytics_client: + poller = await text_analytics_client.begin_analyze_actions( + document, + actions=[ + AbstractSummaryAction(), + ], + ) + + document_results = await poller.result() + async for abstract_summary_results in document_results: + for result in abstract_summary_results: + if result.kind == "AbstractiveSummarization": + print("Summaries abstracted:") + [print(f"{summary.text}\n") for summary in result.summaries] + elif result.is_error is True: + print("...Is an error with code '{}' and message '{}'".format( + result.code, result.message + )) + + +async def main(): + await sample_abstractive_summarization_async() + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_analyze_healthcare_action_async.py b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_analyze_healthcare_action_async.py index 7c3c0744fe16..f340e5deb192 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_analyze_healthcare_action_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_analyze_healthcare_action_async.py @@ -9,7 +9,7 @@ DESCRIPTION: This sample demonstrates how to submit a collection of text documents for analysis, which uses the - AnalyzeHealthcareEntitiesAction and RecognizePiiEntitiesAction to recognize healthcare entities, + AnalyzeHealthcareEntitiesAction (plus FHIR feature) and RecognizePiiEntitiesAction to recognize healthcare entities, along with any PII entities. The response will contain results from each of the individual actions specified in the request. @@ -57,7 +57,7 @@ async def sample_analyze_healthcare_action() -> None: documents, display_name="Sample Text Analysis", actions=[ - AnalyzeHealthcareEntitiesAction(), + AnalyzeHealthcareEntitiesAction(fhir_version="4.0.1"), RecognizePiiEntitiesAction(domain_filter="phi"), ], ) @@ -98,6 +98,7 @@ async def sample_analyze_healthcare_action() -> None: print(f"Relation of type: {relation.relation_type} has the following roles") for role in relation.roles: print(f"...Role '{role.name}' with entity '{role.entity.text}'") + print(f"......FHIR object: {result.fhir_bundle}") elif result.kind == "PiiEntityRecognition": print("Results of Recognize PII Entities action:") diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_dynamic_classification_async.py b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_dynamic_classification_async.py new file mode 100644 index 000000000000..10c89b623950 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_dynamic_classification_async.py @@ -0,0 +1,68 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_dynamic_classification_async.py + +DESCRIPTION: + This sample demonstrates how to dynamically classify documents into one or multiple categories. + No model training is required to use dynamic classification. + +USAGE: + python sample_dynamic_classification_async.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +from cgitb import text +import os +import asyncio + + +async def sample_dynamic_classification_async() -> None: + # [START dynamic_classification_async] + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics.aio import TextAnalyticsClient + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + + async with text_analytics_client: + results = await text_analytics_client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + classification_type="Multi" + ) + + for doc, classification_result in zip(documents, results): + if classification_result.kind == "DynamicClassification": + classifications = classification_result.classifications + print(f"\n'{doc}' classifications:\n") + for classification in classifications: + print("Category '{}' with confidence score {}.".format( + classification.category, classification.confidence_score + )) + elif classification_result.is_error is True: + print("Document '{}' has an error with code '{}' and message '{}'".format( + doc, classification_result.code, classification_result.message + )) + # [END dynamic_classification_async] + + +if __name__ == "__main__": + asyncio.run(sample_dynamic_classification_async()) diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_extract_summary_async.py b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_extract_summary_async.py new file mode 100644 index 000000000000..252ad54c7cda --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/async_samples/sample_extract_summary_async.py @@ -0,0 +1,85 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_extract_summary_async.py + +DESCRIPTION: + This sample demonstrates how to submit text documents for extractive text summarization. + Extractive summarization is available as an action type through the begin_analyze_actions API. + +USAGE: + python sample_extract_summary_async.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +import os +import asyncio + + +async def sample_extractive_summarization_async(): + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics.aio import TextAnalyticsClient + from azure.ai.textanalytics import ExtractSummaryAction + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + + document = [ + "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, " + "human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive " + "Services, I have been working with a team of amazing scientists and engineers to turn this quest into a " + "reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of " + "human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the " + "intersection of all three, there's magic-what we call XYZ-code as illustrated in Figure 1-a joint " + "representation to create more powerful AI that can speak, hear, see, and understand humans better. " + "We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, " + "spanning modalities and languages. The goal is to have pretrained models that can jointly learn " + "representations to support a broad range of downstream AI tasks, much in the way humans do today. " + "Over the past five years, we have achieved human performance on benchmarks in conversational speech " + "recognition, machine translation, conversational question answering, machine reading comprehension, " + "and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious " + "aspiration to produce a leap in AI capabilities, achieving multisensory and multilingual learning that " + "is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational " + "component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks." + ] + + async with text_analytics_client: + poller = await text_analytics_client.begin_analyze_actions( + document, + actions=[ + ExtractSummaryAction(), + ], + ) + + document_results = await poller.result() + async for extract_summary_results in document_results: + for result in extract_summary_results: + if result.kind == "ExtractiveSummarization": + print("Summary extracted: \n{}".format( + " ".join([sentence.text for sentence in result.sentences])) + ) + elif result.is_error is True: + print("...Is an error with code '{}' and message '{}'".format( + result.code, result.message + )) + + +async def main(): + await sample_extractive_summarization_async() + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/sample_abstract_summary.py b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_abstract_summary.py new file mode 100644 index 000000000000..d910c87b3b5b --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_abstract_summary.py @@ -0,0 +1,83 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_abstract_summary.py + +DESCRIPTION: + This sample demonstrates how to submit text documents for abstractive text summarization. + Abstractive summarization is available as an action type through the begin_analyze_actions API. + + Abstractive summarization generates a summary that may not use the same words as those in + the document, but captures the main idea. + +USAGE: + python sample_abstract_summary.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +import os + + +def sample_abstractive_summarization() -> None: + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics import ( + TextAnalyticsClient, + AbstractSummaryAction + ) + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + + document = [ + "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, " + "human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive " + "Services, I have been working with a team of amazing scientists and engineers to turn this quest into a " + "reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of " + "human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the " + "intersection of all three, there's magic-what we call XYZ-code as illustrated in Figure 1-a joint " + "representation to create more powerful AI that can speak, hear, see, and understand humans better. " + "We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, " + "spanning modalities and languages. The goal is to have pretrained models that can jointly learn " + "representations to support a broad range of downstream AI tasks, much in the way humans do today. " + "Over the past five years, we have achieved human performance on benchmarks in conversational speech " + "recognition, machine translation, conversational question answering, machine reading comprehension, " + "and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious " + "aspiration to produce a leap in AI capabilities, achieving multisensory and multilingual learning that " + "is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational " + "component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks." + ] + + poller = text_analytics_client.begin_analyze_actions( + document, + actions=[ + AbstractSummaryAction(), + ], + ) + + document_results = poller.result() + for abstract_summary_results in document_results: + for result in abstract_summary_results: + if result.kind == "AbstractiveSummarization": + print("Summaries abstracted:") + [print(f"{summary.text}\n") for summary in result.summaries] + elif result.is_error is True: + print("...Is an error with code '{}' and message '{}'".format( + result.code, result.message + )) + + +if __name__ == "__main__": + sample_abstractive_summarization() diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py index b27d7e2ed248..97fc8cb18908 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_analyze_healthcare_action.py @@ -9,7 +9,7 @@ DESCRIPTION: This sample demonstrates how to submit a collection of text documents for analysis, which uses the - AnalyzeHealthcareEntitiesAction and RecognizePiiEntitiesAction to recognize healthcare entities, + AnalyzeHealthcareEntitiesAction (plus FHIR feature) and RecognizePiiEntitiesAction to recognize healthcare entities, along with any PII entities. The response will contain results from each of the individual actions specified in the request. @@ -55,7 +55,7 @@ def sample_analyze_healthcare_action() -> None: documents, display_name="Sample Text Analysis", actions=[ - AnalyzeHealthcareEntitiesAction(), + AnalyzeHealthcareEntitiesAction(fhir_version="4.0.1"), RecognizePiiEntitiesAction(domain_filter="phi"), ], ) @@ -87,6 +87,7 @@ def sample_analyze_healthcare_action() -> None: print(f"Relation of type: {relation.relation_type} has the following roles") for role in relation.roles: print(f"...Role '{role.name}' with entity '{role.entity.text}'") + print(f"......FHIR object: {result.fhir_bundle}") elif result.kind == "PiiEntityRecognition": print("Results of Recognize PII Entities action:") diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/sample_dynamic_classification.py b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_dynamic_classification.py new file mode 100644 index 000000000000..f36e57f91cd8 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_dynamic_classification.py @@ -0,0 +1,64 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_dynamic_classification.py + +DESCRIPTION: + This sample demonstrates how to dynamically classify documents into one or multiple categories. + No model training is required to use dynamic classification. + +USAGE: + python sample_dynamic_classification.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +import os + + +def sample_dynamic_classification() -> None: + # [START dynamic_classification] + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics import TextAnalyticsClient + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + result = text_analytics_client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + classification_type="Multi" + ) + + for doc, classification_result in zip(documents, result): + if classification_result.kind == "DynamicClassification": + classifications = classification_result.classifications + print(f"\n'{doc}' classifications:\n") + for classification in classifications: + print("Category '{}' with confidence score {}.".format( + classification.category, classification.confidence_score + )) + elif classification_result.is_error is True: + print("Document '{}' has an error with code '{}' and message '{}'".format( + doc, classification_result.code, classification_result.message + )) + # [END dynamic_classification] + + +if __name__ == "__main__": + sample_dynamic_classification() diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/sample_extract_summary.py b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_extract_summary.py new file mode 100644 index 000000000000..b5de0a82c482 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/sample_extract_summary.py @@ -0,0 +1,81 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_extract_summary.py + +DESCRIPTION: + This sample demonstrates how to submit text documents for extractive text summarization. + Extractive summarization is available as an action type through the begin_analyze_actions API. + +USAGE: + python sample_extract_summary.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_LANGUAGE_ENDPOINT - the endpoint to your Language resource. + 2) AZURE_LANGUAGE_KEY - your Language subscription key +""" + + +import os + + +def sample_extractive_summarization(): + from azure.core.credentials import AzureKeyCredential + from azure.ai.textanalytics import ( + TextAnalyticsClient, + ExtractSummaryAction + ) + + endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"] + key = os.environ["AZURE_LANGUAGE_KEY"] + + text_analytics_client = TextAnalyticsClient( + endpoint=endpoint, + credential=AzureKeyCredential(key), + ) + + document = [ + "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, " + "human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive " + "Services, I have been working with a team of amazing scientists and engineers to turn this quest into a " + "reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of " + "human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the " + "intersection of all three, there's magic-what we call XYZ-code as illustrated in Figure 1-a joint " + "representation to create more powerful AI that can speak, hear, see, and understand humans better. " + "We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, " + "spanning modalities and languages. The goal is to have pretrained models that can jointly learn " + "representations to support a broad range of downstream AI tasks, much in the way humans do today. " + "Over the past five years, we have achieved human performance on benchmarks in conversational speech " + "recognition, machine translation, conversational question answering, machine reading comprehension, " + "and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious " + "aspiration to produce a leap in AI capabilities, achieving multisensory and multilingual learning that " + "is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational " + "component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks." + ] + + poller = text_analytics_client.begin_analyze_actions( + document, + actions=[ + ExtractSummaryAction(), + ], + ) + + document_results = poller.result() + for extract_summary_results in document_results: + for result in extract_summary_results: + if result.kind == "ExtractiveSummarization": + print("Summary extracted: \n{}".format( + " ".join([sentence.text for sentence in result.sentences])) + ) + elif result.is_error is True: + print("...Is an error with code '{}' and message '{}'".format( + result.code, result.message + )) + + +if __name__ == "__main__": + sample_extractive_summarization() diff --git a/sdk/textanalytics/azure-ai-textanalytics/swagger/README.md b/sdk/textanalytics/azure-ai-textanalytics/swagger/README.md index 928ee3526243..2154e882a064 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/swagger/README.md +++ b/sdk/textanalytics/azure-ai-textanalytics/swagger/README.md @@ -32,6 +32,7 @@ batch: - tag: release_3_0 - tag: release_3_1 - tag: release_2022_05_01 + - tag: release_2022_10_01_preview - multiapiscript: true ``` @@ -74,6 +75,16 @@ namespace: azure.ai.textanalytics.v2022_05_01 output-folder: $(python-sdks-folder)/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_05_01 ``` +## Release v2022_10_01_preview + +These settings apply only when `--tag=release_2022_10_01_preview` is specified on the command line. + +```yaml $(tag) == 'release_2022_10_01_preview' +input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/98891f186eba7baaf7e14c3d5b2930172c1e1386/specification/cognitiveservices/data-plane/Language/preview/2022-10-01-preview/analyzetext.json +namespace: azure.ai.textanalytics.v2022_10_01_preview +output-folder: $(python-sdks-folder)/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/_generated/v2022_10_01_preview +``` + ### Override Analyze's pager poller for v3.1 ```yaml @@ -102,7 +113,7 @@ directive: $["x-python-custom-default-polling-method-async"] = ".....aio._lro_async.AsyncAnalyzeHealthcareEntitiesLROPollingMethod"; ``` -### Override Analyze's pager poller for 2022_05_01 +### Override Analyze's pager poller for 2022_05_01 and 2022_10_01_preview ```yaml directive: @@ -116,7 +127,6 @@ directive: $["x-python-custom-default-polling-method-async"] = ".....aio._lro_async.AsyncAnalyzeActionsLROPollingMethod"; ``` - ### Override parameterizing the ApiVersion v3.1 ```yaml $(tag) == 'release_3_1' @@ -128,9 +138,9 @@ directive: $["parameters"] = [{"$ref": "#/parameters/Endpoint"}]; ``` -### Fix naming clash with analyze_text method in ApiVersion v2022_05_01 +### Fix naming clash with analyze_text method -```yaml $(tag) == 'release_2022_05_01' +```yaml directive: - from: swagger-document where: '$["paths"]["/analyze-text/jobs"]["post"]' @@ -138,9 +148,9 @@ directive: $["operationId"] = "AnalyzeTextSubmitJob"; ``` -### Fix naming clash with analyze_text method in ApiVersion v2022_05_01 +### Fix naming clash with analyze_text method -```yaml $(tag) == 'release_2022_05_01' +```yaml directive: - from: swagger-document where: '$["paths"]["/analyze-text/jobs/{jobId}"]["get"]' @@ -148,9 +158,9 @@ directive: $["operationId"] = "AnalyzeTextJobStatus"; ``` -### Fix naming clash with analyze_text method in ApiVersion v2022_05_01 +### Fix naming clash with analyze_text method -```yaml $(tag) == 'release_2022_05_01' +```yaml directive: - from: swagger-document where: '$["paths"]["/analyze-text/jobs/{jobId}:cancel"]["post"]' @@ -158,9 +168,9 @@ directive: $["operationId"] = "AnalyzeTextCancelJob"; ``` -### Fix generation of operation class name with ApiVersion v2022_05_01 +### Fix generation of operation class name -```yaml $(tag) == 'release_2022_05_01' +```yaml directive: - from: swagger-document where: '$["info"]' @@ -169,11 +179,21 @@ directive: ``` -### Rename changed JobState property with ApiVersion v2022_05_01 +### Rename changed JobState property -```yaml $(tag) == 'release_2022_05_01' +```yaml directive: - from: swagger-document where: $.definitions.JobState transform: $.properties.lastUpdatedDateTime["x-ms-client-name"] = "lastUpdateDateTime"; +``` + +### Rename enum DocumentType to HealthcareDocumentType + +```yaml +directive: + - from: swagger-document + where: $["definitions"] + transform: > + $["HealthcareTaskParameters"]["properties"]["documentType"]["x-ms-enum"]["name"] = "healthcareDocumentType"; ``` \ No newline at end of file diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_abstract_summary_action_with_options.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_abstract_summary_action_with_options.json new file mode 100644 index 000000000000..025e3527ac10 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_abstract_summary_action_with_options.json @@ -0,0 +1,73 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1938", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive Services, I have been working with a team of amazing scientists and engineers to turn this quest into a reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the intersection of all three, there\u2019s magic\u2014what we call XYZ-code as illustrated in Figure 1\u2014a joint representation to create more powerful AI that can speak, hear, see, and understand humans better. We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, spanning modalities and languages. The goal is to have pre-trained models that can jointly learn representations to support a broad range of downstream AI tasks, much in the way humans do today. Over the past five years, we have achieved human performance on benchmarks in conversational speech recognition, machine translation, conversational question answering, machine reading comprehension, and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious aspiration to produce a leap in AI capabilities, achieving multi-sensory and multilingual learning that is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "AbstractiveSummarization", + "parameters": { + "sentenceCount": 4, + "stringIndexType": "UnicodeCodePoint", + "phraseControls": [ + { + "targetPhrase": "Microsoft", + "strategy": "encourage" + } + ] + } + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "7dfa33a8-5e57-4e1e-b174-1c70237fd79e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 19 Oct 2022 23:49:55 GMT", + "Server": "istio-envoy", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23", + "x-http2-stream-id": "3", + "x-ms-region": "East US" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "details": [ + { + "code": "InvalidRequest", + "message": "Job task: \u0027AbstractiveSummarization-0\u0027 failed with validation error: Invalid value for parameter \u0027phraseControls\u0027, valid values are modelVersion, loggingOptOut, stringIndexType, sentenceCount." + } + ], + "message": "Invalid Request.", + "innererror": { + "code": "InvalidParameterValue", + "message": "Job task: \u0027AbstractiveSummarization-0\u0027 failed with validation errors: [\u0027Invalid parameter in request\u0027]" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_key_phrase_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_key_phrase_task.json index 2dc78894034a..1b7f1c332c9e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_key_phrase_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_key_phrase_task.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,41 +36,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4ca5dd76-5510-41cf-8d26-cdd7711eb1ef", + "apim-request-id": "f93ee2a0-8d46-4fb9-b6ab-2827f9352a16", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:08:45 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/bb5edfd2-88ab-4218-b353-d1dd74515fc1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:48:44 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5367978f-fb6e-4ce0-8ecc-12c52197b435?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "274" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/bb5edfd2-88ab-4218-b353-d1dd74515fc1?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5367978f-fb6e-4ce0-8ecc-12c52197b435?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "159ef567-c6f5-4b94-9d0e-4b2f65e5b197", - "Content-Length": "856", + "apim-request-id": "c91573c0-b0e6-4775-9098-d65ac525fa74", + "Content-Length": "855", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:08:50 GMT", + "Date": "Mon, 17 Oct 2022 18:48:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { - "jobId": "bb5edfd2-88ab-4218-b353-d1dd74515fc1", - "lastUpdatedDateTime": "2022-06-09T17:08:48Z", - "createdDateTime": "2022-06-09T17:08:45Z", - "expirationDateTime": "2022-06-10T17:08:45Z", + "jobId": "5367978f-fb6e-4ce0-8ecc-12c52197b435", + "lastUpdateDateTime": "2022-10-17T18:48:46Z", + "createdDateTime": "2022-10-17T18:48:44Z", + "expirationDateTime": "2022-10-18T18:48:44Z", "status": "succeeded", "errors": [], "tasks": { @@ -82,7 +82,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:08:48.1006387Z", + "lastUpdateDateTime": "2022-10-17T18:48:46.3294846Z", "status": "succeeded", "results": { "statistics": { @@ -120,7 +120,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_sentiment_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_sentiment_task.json index 0fc30b5b2f4a..137a85056bb3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_sentiment_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_dict_sentiment_task.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "448", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "28fb45c3-263d-4bc2-ba59-2209026ebb31", + "apim-request-id": "b3fa82dd-aa5e-43c5-99cc-15dd1fd7c21a", "Content-Length": "0", - "Date": "Fri, 17 Jun 2022 17:40:13 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1a10dcea-de69-4e95-b55c-6123939ce109?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:48:50 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2b277eb0-3742-48a6-ba75-6d28e13eeb69?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "154" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1a10dcea-de69-4e95-b55c-6123939ce109?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2b277eb0-3742-48a6-ba75-6d28e13eeb69?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e1152e2-c758-451d-a303-fae2e2897749", - "Content-Length": "280", + "apim-request-id": "343680f3-626a-4797-9d98-502b7a83e75b", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 17 Jun 2022 17:40:17 GMT", + "Date": "Mon, 17 Oct 2022 18:48:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "1a10dcea-de69-4e95-b55c-6123939ce109", - "lastUpdatedDateTime": "2022-06-17T17:40:13Z", - "createdDateTime": "2022-06-17T17:40:13Z", - "expirationDateTime": "2022-06-18T17:40:13Z", + "jobId": "2b277eb0-3742-48a6-ba75-6d28e13eeb69", + "lastUpdateDateTime": "2022-10-17T18:48:50Z", + "createdDateTime": "2022-10-17T18:48:50Z", + "expirationDateTime": "2022-10-18T18:48:50Z", "status": "running", "errors": [], "tasks": { @@ -90,30 +90,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1a10dcea-de69-4e95-b55c-6123939ce109?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2b277eb0-3742-48a6-ba75-6d28e13eeb69?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00f96c4f-b023-4ae3-912d-a0764d1946bd", - "Content-Length": "1944", + "apim-request-id": "0322f2a4-935b-4a78-90a1-372fcd10bc4b", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 17 Jun 2022 17:40:22 GMT", + "Date": "Mon, 17 Oct 2022 18:49:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { - "jobId": "1a10dcea-de69-4e95-b55c-6123939ce109", - "lastUpdatedDateTime": "2022-06-17T17:40:21Z", - "createdDateTime": "2022-06-17T17:40:13Z", - "expirationDateTime": "2022-06-18T17:40:13Z", + "jobId": "2b277eb0-3742-48a6-ba75-6d28e13eeb69", + "lastUpdateDateTime": "2022-10-17T18:48:58Z", + "createdDateTime": "2022-10-17T18:48:50Z", + "expirationDateTime": "2022-10-18T18:48:50Z", "status": "succeeded", "errors": [], "tasks": { @@ -125,7 +125,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-17T17:40:21.2897764Z", + "lastUpdateDateTime": "2022-10-17T18:48:58.5497978Z", "status": "succeeded", "results": { "statistics": { @@ -143,17 +143,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -170,17 +170,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -190,8 +190,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -208,15 +208,15 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -227,9 +227,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -240,7 +240,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_string_pii_entities_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_string_pii_entities_task.json index a61ac122ac1c..c6464024f1f7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_string_pii_entities_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_string_pii_entities_task.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "451", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e541bb20-18c2-4b16-a8da-acb4b380bff3", + "apim-request-id": "97569e80-c4b0-4ba9-8d80-b32dd7071cd9", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:09:13 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2a93c2b6-d856-4161-9a72-5dd59709f67b?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:22 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7c5d62da-2f18-4373-91d2-662868f3c113?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "145" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2a93c2b6-d856-4161-9a72-5dd59709f67b?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7c5d62da-2f18-4373-91d2-662868f3c113?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e178ea2-999c-401e-be92-34900328cd36", - "Content-Length": "1496", + "apim-request-id": "f293523e-9396-4459-aa9b-f49f19f6544f", + "Content-Length": "1495", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:18 GMT", + "Date": "Mon, 17 Oct 2022 18:49:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "2a93c2b6-d856-4161-9a72-5dd59709f67b", - "lastUpdatedDateTime": "2022-06-09T17:09:16Z", - "createdDateTime": "2022-06-09T17:09:13Z", - "expirationDateTime": "2022-06-10T17:09:13Z", + "jobId": "7c5d62da-2f18-4373-91d2-662868f3c113", + "lastUpdateDateTime": "2022-10-17T18:49:24Z", + "createdDateTime": "2022-10-17T18:49:23Z", + "expirationDateTime": "2022-10-18T18:49:23Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:16.3178064Z", + "lastUpdateDateTime": "2022-10-17T18:49:24.9178284Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_text_document_input_entities_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_text_document_input_entities_task.json index 3e12f30bc66a..2df4dff2b840 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_text_document_input_entities_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_all_successful_passing_text_document_input_entities_task.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "494", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,77 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4e8edc77-1357-4d5f-8637-7692bff48d34", + "apim-request-id": "71827795-651f-4aa1-9355-4af1c8d14cb3", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:09:07 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/48712eb2-2e16-43b1-ad87-ce4ae4c55b47?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:12 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/16a8c682-bded-451a-8ad4-8f38cc7efa0b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "216" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/48712eb2-2e16-43b1-ad87-ce4ae4c55b47?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/16a8c682-bded-451a-8ad4-8f38cc7efa0b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "686c78ae-9edc-43d8-92d5-d106a16b9499", - "Content-Length": "2019", + "apim-request-id": "7be2629e-291c-47cd-816b-f8ca3946995d", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:13 GMT", + "Date": "Mon, 17 Oct 2022 18:49:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "48712eb2-2e16-43b1-ad87-ce4ae4c55b47", - "lastUpdatedDateTime": "2022-06-09T17:09:10Z", - "createdDateTime": "2022-06-09T17:09:07Z", - "expirationDateTime": "2022-06-10T17:09:07Z", + "jobId": "16a8c682-bded-451a-8ad4-8f38cc7efa0b", + "lastUpdateDateTime": "2022-10-17T18:49:12Z", + "createdDateTime": "2022-10-17T18:49:12Z", + "expirationDateTime": "2022-10-18T18:49:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/16a8c682-bded-451a-8ad4-8f38cc7efa0b?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6876410-1962-475e-9975-a1c82942db38", + "Content-Length": "2017", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:49:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "16a8c682-bded-451a-8ad4-8f38cc7efa0b", + "lastUpdateDateTime": "2022-10-17T18:49:20Z", + "createdDateTime": "2022-10-17T18:49:12Z", + "expirationDateTime": "2022-10-18T18:49:12Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +125,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:10.1088403Z", + "lastUpdateDateTime": "2022-10-17T18:49:20.291545Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_continuation_token.json index c7891cf5b056..e041cd4fee33 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_continuation_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "1171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -67,41 +67,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7ae604f7-dc43-47bf-bc2c-ead7bfe1dce0", + "apim-request-id": "2638b263-9c61-4a21-b95c-53d5f6f5246b", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:12:31 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea4ab399-9bae-41f9-9eb3-7f05747c0ac9?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:17 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea5e6051-0f39-4194-b75c-60ccbcd5303e?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1909" + "x-envoy-upstream-service-time": "240" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea4ab399-9bae-41f9-9eb3-7f05747c0ac9?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea5e6051-0f39-4194-b75c-60ccbcd5303e?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16c311ab-75f9-4e7d-99ef-cee99be06db6", - "Content-Length": "8464", + "apim-request-id": "872d5db7-31b6-4be7-aeb6-e877d0092026", + "Content-Length": "8463", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:37 GMT", + "Date": "Mon, 17 Oct 2022 18:51:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "228" + "x-envoy-upstream-service-time": "318" }, "ResponseBody": { - "jobId": "ea4ab399-9bae-41f9-9eb3-7f05747c0ac9", - "lastUpdatedDateTime": "2022-06-09T17:12:35Z", - "createdDateTime": "2022-06-09T17:12:30Z", - "expirationDateTime": "2022-06-10T17:12:30Z", + "jobId": "ea5e6051-0f39-4194-b75c-60ccbcd5303e", + "lastUpdateDateTime": "2022-10-17T18:51:19Z", + "createdDateTime": "2022-10-17T18:51:16Z", + "expirationDateTime": "2022-10-18T18:51:16Z", "status": "succeeded", "errors": [], "tasks": { @@ -113,7 +113,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:12:34.7235622Z", + "lastUpdateDateTime": "2022-10-17T18:51:18.8650847Z", "status": "succeeded", "results": { "statistics": { @@ -305,7 +305,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:12:34.7020439Z", + "lastUpdateDateTime": "2022-10-17T18:51:18.8327788Z", "status": "succeeded", "results": { "statistics": { @@ -424,7 +424,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:12:34.5609874Z", + "lastUpdateDateTime": "2022-10-17T18:51:19.0866398Z", "status": "succeeded", "results": { "statistics": { @@ -442,17 +442,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -469,16 +469,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "offset": 0, @@ -490,45 +490,45 @@ }, { "id": "4", - "sentiment": "positive", + "sentiment": "neutral", "statistics": { "charactersCount": 121, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.07, + "neutral": 0.86, + "negative": 0.07 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.96, - "negative": 0.01 + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, - "length": 55, - "text": "I need a reservation for an indoor restaurant in China." + "length": 56, + "text": "I need a reservation for an indoor restaurant in China. " }, { "sentiment": "neutral", "confidenceScores": { - "positive": 0.12, - "neutral": 0.78, - "negative": 0.1 + "positive": 0.02, + "neutral": 0.8, + "negative": 0.19 }, "offset": 56, - "length": 28, - "text": "Please don\u0027t stop the music." + "length": 29, + "text": "Please don\u0027t stop the music. " }, { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.2, + "neutral": 0.79, + "negative": 0.01 }, "offset": 85, "length": 36, @@ -551,13 +551,13 @@ } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:12:35.2689287Z", + "lastUpdateDateTime": "2022-10-17T18:51:19.1773859Z", "status": "succeeded", "results": { "statistics": { @@ -636,7 +636,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] @@ -644,30 +644,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea4ab399-9bae-41f9-9eb3-7f05747c0ac9?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea5e6051-0f39-4194-b75c-60ccbcd5303e?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df9dd2e1-76cd-46de-a483-20e8ba703479", - "Content-Length": "8464", + "apim-request-id": "ee9d6ee7-c626-4247-9a71-64762821be83", + "Content-Length": "8463", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:37 GMT", + "Date": "Mon, 17 Oct 2022 18:51:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "228" + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { - "jobId": "ea4ab399-9bae-41f9-9eb3-7f05747c0ac9", - "lastUpdatedDateTime": "2022-06-09T17:12:35Z", - "createdDateTime": "2022-06-09T17:12:30Z", - "expirationDateTime": "2022-06-10T17:12:30Z", + "jobId": "ea5e6051-0f39-4194-b75c-60ccbcd5303e", + "lastUpdateDateTime": "2022-10-17T18:51:19Z", + "createdDateTime": "2022-10-17T18:51:16Z", + "expirationDateTime": "2022-10-18T18:51:16Z", "status": "succeeded", "errors": [], "tasks": { @@ -679,7 +679,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:12:34.7235622Z", + "lastUpdateDateTime": "2022-10-17T18:51:18.8650847Z", "status": "succeeded", "results": { "statistics": { @@ -871,7 +871,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:12:34.7020439Z", + "lastUpdateDateTime": "2022-10-17T18:51:18.8327788Z", "status": "succeeded", "results": { "statistics": { @@ -990,7 +990,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:12:34.5609874Z", + "lastUpdateDateTime": "2022-10-17T18:51:19.0866398Z", "status": "succeeded", "results": { "statistics": { @@ -1008,17 +1008,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -1035,16 +1035,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "offset": 0, @@ -1056,45 +1056,45 @@ }, { "id": "4", - "sentiment": "positive", + "sentiment": "neutral", "statistics": { "charactersCount": 121, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.07, + "neutral": 0.86, + "negative": 0.07 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.96, - "negative": 0.01 + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, - "length": 55, - "text": "I need a reservation for an indoor restaurant in China." + "length": 56, + "text": "I need a reservation for an indoor restaurant in China. " }, { "sentiment": "neutral", "confidenceScores": { - "positive": 0.12, - "neutral": 0.78, - "negative": 0.1 + "positive": 0.02, + "neutral": 0.8, + "negative": 0.19 }, "offset": 56, - "length": 28, - "text": "Please don\u0027t stop the music." + "length": 29, + "text": "Please don\u0027t stop the music. " }, { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.2, + "neutral": 0.79, + "negative": 0.01 }, "offset": 85, "length": 36, @@ -1117,13 +1117,13 @@ } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:12:35.2689287Z", + "lastUpdateDateTime": "2022-10-17T18:51:19.1773859Z", "status": "succeeded", "results": { "statistics": { @@ -1202,7 +1202,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_works_with_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_works_with_v3_1.json index aeddffbfd423..a76381fa7f35 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_works_with_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_analyze_works_with_v3_1.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "701", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -79,179 +79,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "08eee958-3236-4b13-a7a4-20024bf27ea4", - "Date": "Thu, 09 Jun 2022 17:12:38 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/5baf2735-1c98-4355-9708-77c65e017d5d", + "apim-request-id": "a3bac1bf-5285-45f0-ae6b-94ebe35b17c0", + "Date": "Mon, 17 Oct 2022 18:51:23 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/454c0f78-4e22-44a7-b9bc-ec719fa28b51", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "346" + "x-envoy-upstream-service-time": "334" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/5baf2735-1c98-4355-9708-77c65e017d5d", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/454c0f78-4e22-44a7-b9bc-ec719fa28b51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06917446-1c04-4e61-a177-364deedf14d2", + "apim-request-id": "fe5fdd05-8b05-4685-93c6-6507961c795c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:43 GMT", + "Date": "Mon, 17 Oct 2022 18:51:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-envoy-upstream-service-time": "241" }, "ResponseBody": { - "jobId": "5baf2735-1c98-4355-9708-77c65e017d5d", - "lastUpdateDateTime": "2022-06-09T17:12:40Z", - "createdDateTime": "2022-06-09T17:12:37Z", - "expirationDateTime": "2022-06-10T17:12:37Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:12:40.4905493Z", - "taskName": "0", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "entities": [], - "warnings": [] - }, - { - "id": "0", - "entities": [], - "warnings": [] - }, - { - "id": "19", - "entities": [], - "warnings": [] - }, - { - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:12:39.915784Z", - "taskName": "3", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "entities": [], - "warnings": [] - }, - { - "id": "0", - "entities": [], - "warnings": [] - }, - { - "id": "19", - "entities": [], - "warnings": [] - }, - { - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:12:40.6882618Z", - "taskName": "2", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": ":)", - "id": "56", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":(", - "id": "0", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":P", - "id": "19", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":D", - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/5baf2735-1c98-4355-9708-77c65e017d5d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4016b843-80f5-42ed-9ce4-81289c625429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" - }, - "ResponseBody": { - "jobId": "5baf2735-1c98-4355-9708-77c65e017d5d", - "lastUpdateDateTime": "2022-06-09T17:12:47Z", - "createdDateTime": "2022-06-09T17:12:37Z", - "expirationDateTime": "2022-06-10T17:12:37Z", + "jobId": "454c0f78-4e22-44a7-b9bc-ec719fa28b51", + "lastUpdateDateTime": "2022-10-17T18:51:26Z", + "createdDateTime": "2022-10-17T18:51:23Z", + "expirationDateTime": "2022-10-18T18:51:23Z", "status": "running", "errors": [], "tasks": { @@ -261,7 +123,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:40.4905493Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.8373699Z", "taskName": "0", "state": "succeeded", "results": { @@ -294,7 +156,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:39.915784Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.2146327Z", "taskName": "3", "state": "succeeded", "results": { @@ -325,46 +187,42 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:40.6882618Z", - "taskName": "2", + "lastUpdateDateTime": "2022-10-17T18:51:25.9048341Z", + "taskName": "1", "state": "succeeded", "results": { "documents": [ { - "redactedText": ":)", "id": "56", - "entities": [], + "keyPhrases": [], "warnings": [] }, { - "redactedText": ":(", "id": "0", - "entities": [], + "keyPhrases": [], "warnings": [] }, { - "redactedText": ":P", "id": "19", - "entities": [], + "keyPhrases": [], "warnings": [] }, { - "redactedText": ":D", "id": "1", - "entities": [], + "keyPhrases": [], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2022-10-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:47.0222336Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.1021066Z", "taskName": "4", "state": "succeeded", "results": { @@ -396,17 +254,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -417,19 +275,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -442,16 +300,16 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -463,7 +321,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] @@ -471,30 +329,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/5baf2735-1c98-4355-9708-77c65e017d5d", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/454c0f78-4e22-44a7-b9bc-ec719fa28b51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5e87dc6-f71d-4b52-a600-a1637ab9cbbf", + "apim-request-id": "f969db6d-7c7d-4d18-b987-58bcaf096162", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:54 GMT", + "Date": "Mon, 17 Oct 2022 18:51:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "425" + "x-envoy-upstream-service-time": "362" }, "ResponseBody": { - "jobId": "5baf2735-1c98-4355-9708-77c65e017d5d", - "lastUpdateDateTime": "2022-06-09T17:12:49Z", - "createdDateTime": "2022-06-09T17:12:37Z", - "expirationDateTime": "2022-06-10T17:12:37Z", + "jobId": "454c0f78-4e22-44a7-b9bc-ec719fa28b51", + "lastUpdateDateTime": "2022-10-17T18:51:32Z", + "createdDateTime": "2022-10-17T18:51:23Z", + "expirationDateTime": "2022-10-18T18:51:23Z", "status": "succeeded", "errors": [], "tasks": { @@ -504,7 +362,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:40.4905493Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.8373699Z", "taskName": "0", "state": "succeeded", "results": { @@ -537,7 +395,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:39.915784Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.2146327Z", "taskName": "3", "state": "succeeded", "results": { @@ -570,7 +428,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:40.6882618Z", + "lastUpdateDateTime": "2022-10-17T18:51:32.0132112Z", "taskName": "2", "state": "succeeded", "results": { @@ -607,7 +465,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:49.7890784Z", + "lastUpdateDateTime": "2022-10-17T18:51:25.9048341Z", "taskName": "1", "state": "succeeded", "results": { @@ -634,13 +492,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:12:47.0222336Z", + "lastUpdateDateTime": "2022-10-17T18:51:26.1021066Z", "taskName": "4", "state": "succeeded", "results": { @@ -672,17 +530,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -693,19 +551,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -718,16 +576,16 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -739,7 +597,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document.json new file mode 100644 index 000000000000..946ff775654b --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document.json @@ -0,0 +1,436 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "723", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "auto" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "auto" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "EntityRecognition", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "1", + "kind": "KeyPhraseExtraction", + "parameters": {} + }, + { + "taskName": "2", + "kind": "PiiEntityRecognition", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "3", + "kind": "SentimentAnalysis", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "4", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "63b41287-bec9-49cb-b517-89d5611a3404", + "Content-Length": "0", + "Date": "Fri, 28 Oct 2022 18:19:33 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/91587903-745b-4512-84be-9d84a0b83583?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "509", + "x-ms-region": "UK South" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/91587903-745b-4512-84be-9d84a0b83583?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf3dd49d-38cf-4c49-bc28-a8090f8cb26a", + "Content-Length": "4730", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 28 Oct 2022 18:19:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "146", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "jobId": "91587903-745b-4512-84be-9d84a0b83583", + "lastUpdateDateTime": "2022-10-28T18:19:36Z", + "createdDateTime": "2022-10-28T18:19:33Z", + "expirationDateTime": "2022-10-29T18:19:33Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-28T18:19:36.2768138Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-28T18:19:36.6182176Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "PiiEntityRecognitionLROResults", + "taskName": "2", + "lastUpdateDateTime": "2022-10-28T18:19:36.4136792Z", + "status": "succeeded", + "results": { + "documents": [ + { + "redactedText": "********* was founded by ********** and **********", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.96 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.99 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "redactedText": "********* fue fundado por ********** y **********", + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.96 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 0.99 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "3", + "lastUpdateDateTime": "2022-10-28T18:19:36.6991103Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 50, + "text": "Microsoft was founded by Bill Gates and Paul Allen" + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.05, + "neutral": 0.94, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.05, + "neutral": 0.94, + "negative": 0.0 + }, + "offset": 0, + "length": 49, + "text": "Microsoft fue fundado por Bill Gates y Paul Allen" + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-28T18:19:35.2823932Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 50 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "sentences": [ + { + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 49 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document_custom.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document_custom.json new file mode 100644 index 000000000000..ebbf0da47f20 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_autodetect_lang_document_custom.json @@ -0,0 +1,283 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "811", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "auto" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "auto" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "CustomEntityRecognition", + "parameters": { + "projectName": "custom_entities_project_name", + "deploymentName": "custom_entities_project_name", + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "1", + "kind": "CustomSingleLabelClassification", + "parameters": { + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" + } + }, + { + "taskName": "2", + "kind": "CustomMultiLabelClassification", + "parameters": { + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6175e0fb-4f4c-49da-b8ac-11e2f61c87ee", + "Content-Length": "0", + "Date": "Fri, 28 Oct 2022 18:23:45 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/dcf001ee-d7d8-402c-ab2d-d5d324e1f748?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190", + "x-ms-region": "West US 2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/dcf001ee-d7d8-402c-ab2d-d5d324e1f748?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2b18c81-100e-4b3a-bfcf-657d8a6ee838", + "Content-Length": "2791", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 28 Oct 2022 18:23:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108", + "x-ms-region": "West US 2" + }, + "ResponseBody": { + "jobId": "dcf001ee-d7d8-402c-ab2d-d5d324e1f748", + "lastUpdateDateTime": "2022-10-28T18:23:48Z", + "createdDateTime": "2022-10-28T18:23:46Z", + "expirationDateTime": "2022-10-29T18:23:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "items": [ + { + "kind": "CustomEntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-28T18:23:48.007848Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.06 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 25, + "length": 10, + "confidenceScore": 0.59 + }, + { + "text": "and", + "category": "party_size_description", + "offset": 36, + "length": 3, + "confidenceScore": 0.25 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 40, + "length": 10, + "confidenceScore": 0.81 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.06 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 26, + "length": 10, + "confidenceScore": 0.54 + }, + { + "text": "y", + "category": "party_size_description", + "offset": 37, + "length": 1, + "confidenceScore": 0.34 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 39, + "length": 10, + "confidenceScore": 0.79 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "custom_entities_project_name", + "deploymentName": "custom_entities_project_name" + } + }, + { + "kind": "CustomSingleLabelClassificationLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-28T18:23:48.1005134Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "class": [ + { + "category": "PlayMusic", + "confidenceScore": 0.39 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "class": [ + { + "category": "RateBook", + "confidenceScore": 0.46 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" + } + }, + { + "kind": "CustomMultiLabelClassificationLROResults", + "taskName": "2", + "lastUpdateDateTime": "2022-10-28T18:23:47.8224657Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "class": [], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "class": [], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_credentials.json index 3a1dec1ff4ad..6561dceb7356 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "594", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -59,10 +59,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "a0b1b626-f009-4484-b409-c27f7eb36c94", + "apim-request-id": "e37a3d47-3905-4c01-b4f2-cec8abe032bc", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Thu, 09 Jun 2022 17:09:18 GMT" + "Date": "Mon, 17 Oct 2022 18:49:28 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_all_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_all_tasks.json index 94d4a4eeff35..ee0efa813155 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_all_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_all_tasks.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "718", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -65,21 +65,31 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b1be192f-fc03-4a56-8aa9-c5e1ddac2f71", + "apim-request-id": "8e8df4ab-62cc-441a-938b-9b8fc941e0c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:09 GMT", + "Date": "Mon, 17 Oct 2022 18:50:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { "code": "InvalidRequest", - "message": "Invalid parameter in request", + "details": [ + { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "InvalidParameterValue", + "message": "Job task parameter value \u0027bad\u0027 is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest, 2020-07-01, 2021-01-15." + } + } + ], + "message": "Invalid Request.", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value bad is not supported for model-version parameter for job task type NamedEntityRecognition. Supported values latest,2020-04-01,2021-01-15,2021-06-01." + "message": "Job task: \u0027PersonallyIdentifiableInformation-2\u0027 failed with validation errors: [\u0027Invalid parameter in request\u0027]" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_multiple_tasks.json index ede0b5924fc6..4621090070a9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_model_version_error_multiple_tasks.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "721", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -65,16 +65,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d387e29c-6117-425a-9a2c-7feaaa23a753", + "apim-request-id": "3e2b9081-04ed-48da-82c4-b48d2f1525ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Oct 2022 21:31:18 GMT", - "Server": "istio-envoy", + "Date": "Mon, 17 Oct 2022 18:50:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137", - "x-http2-stream-id": "3", - "x-ms-region": "East US" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_request_on_empty_document.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_request_on_empty_document.json index 461924233ccd..450996f908e0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_request_on_empty_document.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_bad_request_on_empty_document.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "156", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -31,13 +31,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "23191373-8257-4aea-b6f5-aba66e5234aa", + "apim-request-id": "f10c400f-be5d-41ef-82cf-ff3e6ec6cfd6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:18 GMT", + "Date": "Mon, 17 Oct 2022 18:49:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel.json index 6354db28a2cb..2a30c0c22cf2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "7294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -154,36 +154,36 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "226c0a73-7655-4f5b-a15c-37189e426c34", + "apim-request-id": "55813ef5-d622-4287-9aa4-3d62ab699fb6", "Content-Length": "0", - "Date": "Wed, 20 Jul 2022 16:34:18 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d574b727-cefa-4e67-be56-c9a41948c7fd?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:41 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "705" + "x-envoy-upstream-service-time": "643" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d574b727-cefa-4e67-be56-c9a41948c7fd:cancel?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3:cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fe843ed2-af14-41b6-9765-2f98481190cf", + "apim-request-id": "39cd9c25-9b81-4696-bb01-588a67a0d05d", "Content-Length": "0", - "Date": "Wed, 20 Jul 2022 16:34:18 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d574b727-cefa-4e67-be56-c9a41948c7fd?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:41 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_terminal_state.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_terminal_state.json index c777733f8509..175290f37380 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_terminal_state.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_terminal_state.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "7294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -154,53 +154,113 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "72d5a4c0-8603-44a6-b6cd-3915bc27bbde", + "apim-request-id": "2c446596-2f55-4ebb-a4f9-6fbfc55655fa", "Content-Length": "0", - "Date": "Wed, 20 Jul 2022 16:34:26 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b6516a87-b450-418f-ae5b-61baeb1c626b?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:42 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d921422b-1534-48e4-aaac-c01197aa3c93?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1138" + "x-envoy-upstream-service-time": "626" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b6516a87-b450-418f-ae5b-61baeb1c626b?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "6f71bbe9-beeb-4cc7-9d33-4c2865442df7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:51:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "6f71bbe9-beeb-4cc7-9d33-4c2865442df7" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "7b7c1035-f76d-4d70-87b7-b98b1bf79ad4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:51:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "7b7c1035-f76d-4d70-87b7-b98b1bf79ad4" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d921422b-1534-48e4-aaac-c01197aa3c93?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7765a34f-ae29-4a27-9b25-ceecdc68f4bc", - "Content-Length": "12773", + "apim-request-id": "d1e9ea91-dc97-4624-acc5-56225645c2ca", + "Content-Length": "19188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jul 2022 16:34:31 GMT", + "Date": "Mon, 17 Oct 2022 18:51:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "202" + "x-envoy-upstream-service-time": "452" }, "ResponseBody": { - "jobId": "b6516a87-b450-418f-ae5b-61baeb1c626b", - "lastUpdatedDateTime": "2022-07-20T16:34:31Z", - "createdDateTime": "2022-07-20T16:34:25Z", - "expirationDateTime": "2022-07-21T16:34:25Z", + "jobId": "d921422b-1534-48e4-aaac-c01197aa3c93", + "lastUpdateDateTime": "2022-10-17T18:51:48Z", + "createdDateTime": "2022-10-17T18:51:42Z", + "expirationDateTime": "2022-10-18T18:51:42Z", "status": "running", "errors": [], "tasks": { - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "items": [ { - "kind": "SentimentAnalysisLROResults", - "taskName": "4", - "lastUpdateDateTime": "2022-07-20T16:34:31.0166528Z", + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:51:47.5939675Z", "status": "succeeded", "results": { "statistics": { @@ -212,509 +272,481 @@ "documents": [ { "id": "0", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "1", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "2", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "3", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "4", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "5", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "6", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "7", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "8", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "9", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "10", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "11", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "12", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "13", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "14", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "15", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "16", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } - ], "warnings": [] }, { "id": "17", - "sentiment": "negative", - "statistics": { - "charactersCount": 295, - "transactionsCount": 1 - }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 - }, - "offset": 0, - "length": 295, - "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." - } + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, "warnings": [] }, { "id": "18", - "sentiment": "negative", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-17T18:51:46.1155693Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -724,24 +756,24 @@ "warnings": [] }, { - "id": "19", - "sentiment": "negative", + "id": "1", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -749,723 +781,664 @@ } ], "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b6516a87-b450-418f-ae5b-61baeb1c626b?api-version=2022-05-01\u0026showStats=True", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "310d1ca4-a4c5-4d58-af3a-19673d371526", - "Content-Length": "44740", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jul 2022 16:34:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "605" - }, - "ResponseBody": { - "jobId": "b6516a87-b450-418f-ae5b-61baeb1c626b", - "lastUpdatedDateTime": "2022-07-20T16:34:36Z", - "createdDateTime": "2022-07-20T16:34:25Z", - "expirationDateTime": "2022-07-21T16:34:25Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "items": [ - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-07-20T16:34:33.6508829Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 20, - "validDocumentsCount": 20, - "erroneousDocumentsCount": 0, - "transactionsCount": 20 - }, - "documents": [ + }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "0", + "id": "2", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "1", + "id": "3", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "2", + "id": "4", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "3", + "id": "5", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "4", + "id": "6", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "5", + "id": "7", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "6", + "id": "8", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "7", + "id": "9", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "8", + "id": "10", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "9", + "id": "11", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "10", + "id": "12", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "11", + "id": "13", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "12", + "id": "14", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "13", + "id": "15", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "14", + "id": "16", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "15", + "id": "17", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.95 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.9 - }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "18", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.87 + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "16", + "id": "19", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "de08d470-fbd2-486f-a339-387c25b80d08", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:51:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "de08d470-fbd2-486f-a339-387c25b80d08" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c176324-9b0c-48a0-95e2-b6a0181387e3?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "cd05f48e-e1b1-4440-a4c7-40c1b98f0906", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:51:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "cd05f48e-e1b1-4440-a4c7-40c1b98f0906" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d921422b-1534-48e4-aaac-c01197aa3c93?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19a6824c-d0e6-46e2-ac83-2b54d86656e1", + "Content-Length": "55952", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:51:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1184" + }, + "ResponseBody": { + "jobId": "d921422b-1534-48e4-aaac-c01197aa3c93", + "lastUpdateDateTime": "2022-10-17T18:51:53Z", + "createdDateTime": "2022-10-17T18:51:42Z", + "expirationDateTime": "2022-10-18T18:51:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-17T18:51:51.9826537Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, { "text": "Government Accountability Office", "category": "Organization", "offset": 23, "length": 32, - "confidenceScore": 0.95 + "confidenceScore": 0.99 }, { "text": "GAO", "category": "Organization", "offset": 57, "length": 3, - "confidenceScore": 0.9 + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 }, { "text": "past six years", @@ -1480,32 +1453,74 @@ "category": "Organization", "offset": 202, "length": 3, - "confidenceScore": 0.87 + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "17", + "id": "1", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, { "text": "Government Accountability Office", "category": "Organization", "offset": 23, "length": 32, - "confidenceScore": 0.95 + "confidenceScore": 0.99 }, { "text": "GAO", "category": "Organization", "offset": 57, "length": 3, - "confidenceScore": 0.9 + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 }, { "text": "past six years", @@ -1520,32 +1535,74 @@ "category": "Organization", "offset": 202, "length": 3, - "confidenceScore": 0.87 + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "18", + "id": "2", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, { "text": "Government Accountability Office", "category": "Organization", "offset": 23, "length": 32, - "confidenceScore": 0.95 + "confidenceScore": 0.99 }, { "text": "GAO", "category": "Organization", "offset": 57, "length": 3, - "confidenceScore": 0.9 + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 }, { "text": "past six years", @@ -1560,32 +1617,74 @@ "category": "Organization", "offset": 202, "length": 3, - "confidenceScore": 0.87 + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 } ], "warnings": [] }, { - "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", - "id": "19", + "id": "3", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, { "text": "Government Accountability Office", "category": "Organization", "offset": 23, "length": 32, - "confidenceScore": 0.95 + "confidenceScore": 0.99 }, { "text": "GAO", "category": "Organization", "offset": 57, "length": 3, - "confidenceScore": 0.9 + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 }, { "text": "past six years", @@ -1600,20 +1699,1797 @@ "category": "Organization", "offset": 202, "length": 3, - "confidenceScore": 0.87 + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 } ], "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" + }, + { + "id": "4", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "5", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "6", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "7", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "8", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "9", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "10", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "11", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "12", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "13", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "14", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "15", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "16", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "17", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "18", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "19", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:51:47.5939675Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" } }, { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-07-20T16:34:33.9101257Z", + "lastUpdateDateTime": "2022-10-17T18:51:49.0936394Z", "status": "succeeded", "results": { "statistics": { @@ -2471,7 +4347,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-07-20T16:34:31.0166528Z", + "lastUpdateDateTime": "2022-10-17T18:51:46.1155693Z", "status": "succeeded", "results": { "statistics": { @@ -2483,23 +4359,23 @@ "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2510,23 +4386,23 @@ }, { "id": "1", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2537,23 +4413,23 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2564,23 +4440,23 @@ }, { "id": "3", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2591,23 +4467,23 @@ }, { "id": "4", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2618,23 +4494,23 @@ }, { "id": "5", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2645,23 +4521,23 @@ }, { "id": "6", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2672,23 +4548,23 @@ }, { "id": "7", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2699,23 +4575,23 @@ }, { "id": "8", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2726,23 +4602,23 @@ }, { "id": "9", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2753,23 +4629,23 @@ }, { "id": "10", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2780,23 +4656,23 @@ }, { "id": "11", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2807,23 +4683,23 @@ }, { "id": "12", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2834,23 +4710,23 @@ }, { "id": "13", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2861,23 +4737,23 @@ }, { "id": "14", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2888,23 +4764,23 @@ }, { "id": "15", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2915,23 +4791,23 @@ }, { "id": "16", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2942,23 +4818,23 @@ }, { "id": "17", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2969,23 +4845,23 @@ }, { "id": "18", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2996,23 +4872,23 @@ }, { "id": "19", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -3023,7 +4899,7 @@ } ], "errors": [], - "modelVersion": "2022-06-01" + "modelVersion": "2022-10-01" } } ] @@ -3031,30 +4907,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b6516a87-b450-418f-ae5b-61baeb1c626b?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d921422b-1534-48e4-aaac-c01197aa3c93?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "741848a2-f916-439f-9f52-3cbb3777b851", - "Content-Length": "72752", + "apim-request-id": "3bb5b50b-06a9-4850-bbaf-2fb73bfbd33f", + "Content-Length": "72711", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jul 2022 16:34:43 GMT", + "Date": "Mon, 17 Oct 2022 18:52:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "996" + "x-envoy-upstream-service-time": "1165" }, "ResponseBody": { - "jobId": "b6516a87-b450-418f-ae5b-61baeb1c626b", - "lastUpdatedDateTime": "2022-07-20T16:34:37Z", - "createdDateTime": "2022-07-20T16:34:25Z", - "expirationDateTime": "2022-07-21T16:34:25Z", + "jobId": "d921422b-1534-48e4-aaac-c01197aa3c93", + "lastUpdateDateTime": "2022-10-17T18:51:54Z", + "createdDateTime": "2022-10-17T18:51:42Z", + "expirationDateTime": "2022-10-18T18:51:42Z", "status": "succeeded", "errors": [], "tasks": { @@ -3066,7 +4942,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-07-20T16:34:37.0219091Z", + "lastUpdateDateTime": "2022-10-17T18:51:51.9826537Z", "status": "succeeded", "results": { "statistics": { @@ -4724,7 +6600,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-07-20T16:34:36.7379446Z", + "lastUpdateDateTime": "2022-10-17T18:51:47.5939675Z", "status": "succeeded", "results": { "statistics": { @@ -5176,13 +7052,13 @@ } ], "errors": [], - "modelVersion": "2022-07-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-07-20T16:34:33.6508829Z", + "lastUpdateDateTime": "2022-10-17T18:51:54.0521961Z", "status": "succeeded", "results": { "statistics": { @@ -6000,7 +7876,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-07-20T16:34:33.9101257Z", + "lastUpdateDateTime": "2022-10-17T18:51:49.0936394Z", "status": "succeeded", "results": { "statistics": { @@ -6858,7 +8734,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-07-20T16:34:31.0166528Z", + "lastUpdateDateTime": "2022-10-17T18:51:46.1155693Z", "status": "succeeded", "results": { "statistics": { @@ -6870,23 +8746,23 @@ "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6897,23 +8773,23 @@ }, { "id": "1", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6924,23 +8800,23 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6951,23 +8827,23 @@ }, { "id": "3", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6978,23 +8854,23 @@ }, { "id": "4", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7005,23 +8881,23 @@ }, { "id": "5", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7032,23 +8908,23 @@ }, { "id": "6", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7059,23 +8935,23 @@ }, { "id": "7", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7086,23 +8962,23 @@ }, { "id": "8", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7113,23 +8989,23 @@ }, { "id": "9", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7140,23 +9016,23 @@ }, { "id": "10", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7167,23 +9043,23 @@ }, { "id": "11", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7194,23 +9070,23 @@ }, { "id": "12", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7221,23 +9097,23 @@ }, { "id": "13", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7248,23 +9124,23 @@ }, { "id": "14", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7275,23 +9151,23 @@ }, { "id": "15", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7302,23 +9178,23 @@ }, { "id": "16", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7329,23 +9205,23 @@ }, { "id": "17", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7356,23 +9232,23 @@ }, { "id": "18", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7383,23 +9259,23 @@ }, { "id": "19", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7410,7 +9286,7 @@ } ], "errors": [], - "modelVersion": "2022-06-01" + "modelVersion": "2022-10-01" } } ] @@ -7418,30 +9294,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b6516a87-b450-418f-ae5b-61baeb1c626b:cancel?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d921422b-1534-48e4-aaac-c01197aa3c93:cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3c13a102-4b00-48e1-821c-049d46a11705", + "apim-request-id": "effb55fd-c803-4457-9756-cb8ee5904221", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jul 2022 16:34:43 GMT", + "Date": "Mon, 17 Oct 2022 18:52:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "error": { "code": "InvalidRequest", - "message": "Failed to cancel job with job id b6516a87-b450-418f-ae5b-61baeb1c626b as its already completed." + "message": "Failed to cancel job with job id d921422b-1534-48e4-aaac-c01197aa3c93 as its already completed." } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_v3_1.json index 2e4cf3e03cda..43758016c680 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_cancel_fail_v3_1.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "7289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -159,13 +159,13 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "03f8ad1e-822e-4411-b0db-c24bafcd1b7a", - "Date": "Wed, 20 Jul 2022 16:34:44 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1144df17-7939-4925-bf3e-76f97710d884", + "apim-request-id": "3c9fd914-7cf6-4dc7-aaa9-5e9d6f41a719", + "Date": "Mon, 17 Oct 2022 18:52:03 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/64b33137-2984-4622-93bb-7eea81d797e4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1036" + "x-envoy-upstream-service-time": "1028" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_custom_partial_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_custom_partial_error.json index d9cd91475598..4800b585a4a6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_custom_partial_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_custom_partial_error.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1015", + "Content-Length": "1003", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -31,16 +31,16 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "taskName": "1", "kind": "CustomMultiLabelClassification", "parameters": { - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { @@ -56,41 +56,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "eb890078-e5f3-4f53-a25b-3a421d95ab4b", + "apim-request-id": "f5484d05-582e-4d32-82ab-2bff20f2ca7d", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:12:25 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/64c0f660-257f-49c1-90d1-8dcd9e685501?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:10 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a884d619-55b5-4d82-887f-b40b25516de8?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "254" + "x-envoy-upstream-service-time": "242" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/64c0f660-257f-49c1-90d1-8dcd9e685501?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a884d619-55b5-4d82-887f-b40b25516de8?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f721399-310e-4410-902e-8f0c72166e57", - "Content-Length": "3705", + "apim-request-id": "8f3cbddf-b527-44e5-ba21-5427c89b9d56", + "Content-Length": "3692", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:12:31 GMT", + "Date": "Mon, 17 Oct 2022 18:51:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { - "jobId": "64c0f660-257f-49c1-90d1-8dcd9e685501", - "lastUpdatedDateTime": "2022-06-23T02:12:27Z", - "createdDateTime": "2022-06-23T02:12:26Z", - "expirationDateTime": "2022-06-24T02:12:26Z", + "jobId": "a884d619-55b5-4d82-887f-b40b25516de8", + "lastUpdateDateTime": "2022-10-17T18:51:11Z", + "createdDateTime": "2022-10-17T18:51:10Z", + "expirationDateTime": "2022-10-18T18:51:10Z", "status": "succeeded", "errors": [], "tasks": { @@ -102,7 +102,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:12:27.2425498Z", + "lastUpdateDateTime": "2022-10-17T18:51:11.7622058Z", "status": "succeeded", "results": { "statistics": { @@ -140,14 +140,14 @@ } } ], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-23T02:12:26.8100679Z", + "lastUpdateDateTime": "2022-10-17T18:51:11.6042126Z", "status": "succeeded", "results": { "statistics": { @@ -180,14 +180,14 @@ } } ], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { "kind": "CustomEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-23T02:12:27.1032956Z", + "lastUpdateDateTime": "2022-10-17T18:51:11.5957301Z", "status": "succeeded", "results": { "statistics": { @@ -211,6 +211,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -225,20 +232,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -253,13 +246,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -267,6 +253,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -281,13 +281,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -295,13 +288,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -315,6 +301,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_disable_service_logs.json index 001b17e4f783..1cfa0aff5e8a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_disable_service_logs.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1481", + "Content-Length": "1469", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -66,8 +66,8 @@ "kind": "CustomSingleLabelClassification", "parameters": { "loggingOptOut": true, - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { @@ -75,8 +75,8 @@ "kind": "CustomMultiLabelClassification", "parameters": { "loggingOptOut": true, - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { @@ -101,257 +101,53 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2a041f29-e0b6-4fb1-b72e-9673be773226", + "apim-request-id": "1fc1a90b-14bd-469d-bef0-f57355e10b61", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:10:36 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3857da50-7216-4749-bea9-0841318bda42?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:25 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ed855905-eb2a-4c25-ac5e-636897433b43?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "425" + "x-envoy-upstream-service-time": "559" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3857da50-7216-4749-bea9-0841318bda42?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ed855905-eb2a-4c25-ac5e-636897433b43?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6a35906-d55a-4240-8377-23a537c939aa", - "Content-Length": "2544", + "apim-request-id": "b10149f0-a93c-4d24-ae7d-ede9f706a53a", + "Content-Length": "2548", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:41 GMT", + "Date": "Mon, 17 Oct 2022 18:50:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { - "jobId": "3857da50-7216-4749-bea9-0841318bda42", - "lastUpdatedDateTime": "2022-06-09T17:10:39Z", - "createdDateTime": "2022-06-09T17:10:36Z", - "expirationDateTime": "2022-06-10T17:10:36Z", + "jobId": "ed855905-eb2a-4c25-ac5e-636897433b43", + "lastUpdateDateTime": "2022-10-17T18:50:27Z", + "createdDateTime": "2022-10-17T18:50:25Z", + "expirationDateTime": "2022-10-18T18:50:25Z", "status": "running", "errors": [], "tasks": { - "completed": 7, + "completed": 6, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 9, "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:10:37.4553713Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, - { - "kind": "KeyPhraseExtractionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:38.3246222Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Test", - "logging" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:39.7347707Z", - "status": "succeeded", - "results": { - "documents": [ - { - "redactedText": "Test for logging disable", - "id": "0", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, - { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:38.1996211Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "a7b11e27-5b63-19a5-b4dd-37b71149ecac", - "name": "Test (assessment)", - "matches": [ - { - "text": "Test", - "offset": 0, - "length": 4, - "confidenceScore": 0.04 - } - ], - "language": "en", - "id": "Test (assessment)", - "url": "https://en.wikipedia.org/wiki/Test_(assessment)", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "CustomSingleLabelClassificationLROResults", - "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:10:37.6836202Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "class": [ - { - "category": "PlayMusic", - "confidenceScore": 0.6 - } - ], - "warnings": [] - } - ], - "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" - } - }, - { - "kind": "CustomMultiLabelClassificationLROResults", - "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:10:36.950328Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "class": [], - "warnings": [] - } - ], - "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" - } - }, - { - "kind": "CustomEntityRecognitionLROResults", - "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:10:37.1181673Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "projectName": "custom_entities_project_name", - "deploymentName": "custom_entities_project_name" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3857da50-7216-4749-bea9-0841318bda42?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6fba1e9b-5a8b-4ae0-a4cc-a99de6752f4a", - "Content-Length": "2938", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "226" - }, - "ResponseBody": { - "jobId": "3857da50-7216-4749-bea9-0841318bda42", - "lastUpdatedDateTime": "2022-06-09T17:10:44Z", - "createdDateTime": "2022-06-09T17:10:36Z", - "expirationDateTime": "2022-06-10T17:10:36Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 8, - "failed": 0, - "inProgress": 1, - "total": 9, - "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:10:37.4553713Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:44.7431868Z", + "lastUpdateDateTime": "2022-10-17T18:50:26.8779879Z", "status": "succeeded", "results": { "documents": [ @@ -380,48 +176,10 @@ "modelVersion": "2021-06-01" } }, - { - "kind": "KeyPhraseExtractionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:38.3246222Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Test", - "logging" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:39.7347707Z", - "status": "succeeded", - "results": { - "documents": [ - { - "redactedText": "Test for logging disable", - "id": "0", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:38.1996211Z", + "lastUpdateDateTime": "2022-10-17T18:50:27.1855081Z", "status": "succeeded", "results": { "documents": [ @@ -452,10 +210,45 @@ "modelVersion": "2021-06-01" } }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-17T18:50:26.9232774Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 + }, + "offset": 0, + "length": 24, + "text": "Test for logging disable" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:10:37.6836202Z", + "lastUpdateDateTime": "2022-10-17T18:50:25.8476218Z", "status": "succeeded", "results": { "documents": [ @@ -471,44 +264,44 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { - "kind": "CustomMultiLabelClassificationLROResults", - "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:10:36.950328Z", + "kind": "CustomEntityRecognitionLROResults", + "taskName": "7", + "lastUpdateDateTime": "2022-10-17T18:50:25.8203611Z", "status": "succeeded", "results": { "documents": [ { "id": "0", - "class": [], + "entities": [], "warnings": [] } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "custom_entities_project_name", + "deploymentName": "custom_entities_project_name" } }, { - "kind": "CustomEntityRecognitionLROResults", - "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:10:37.1181673Z", + "kind": "HealthcareLROResults", + "taskName": "8", + "lastUpdateDateTime": "2022-10-17T18:50:26.888393Z", "status": "succeeded", "results": { "documents": [ { "id": "0", "entities": [], + "relations": [], "warnings": [] } ], "errors": [], - "projectName": "custom_entities_project_name", - "deploymentName": "custom_entities_project_name" + "modelVersion": "2022-03-01" } } ] @@ -516,30 +309,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3857da50-7216-4749-bea9-0841318bda42?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ed855905-eb2a-4c25-ac5e-636897433b43?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4107a785-4940-44c8-bb66-ee99d3e9471a", - "Content-Length": "3413", + "apim-request-id": "2ab6c98a-2615-4702-81bb-6f78bb86f02f", + "Content-Length": "3396", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:52 GMT", + "Date": "Mon, 17 Oct 2022 18:50:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "308" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { - "jobId": "3857da50-7216-4749-bea9-0841318bda42", - "lastUpdatedDateTime": "2022-06-09T17:10:50Z", - "createdDateTime": "2022-06-09T17:10:36Z", - "expirationDateTime": "2022-06-10T17:10:36Z", + "jobId": "ed855905-eb2a-4c25-ac5e-636897433b43", + "lastUpdateDateTime": "2022-10-17T18:50:32Z", + "createdDateTime": "2022-10-17T18:50:25Z", + "expirationDateTime": "2022-10-18T18:50:25Z", "status": "succeeded", "errors": [], "tasks": { @@ -548,28 +341,10 @@ "inProgress": 0, "total": 9, "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:10:37.4553713Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:44.7431868Z", + "lastUpdateDateTime": "2022-10-17T18:50:26.8779879Z", "status": "succeeded", "results": { "documents": [ @@ -601,7 +376,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:38.3246222Z", + "lastUpdateDateTime": "2022-10-17T18:50:32.9435837Z", "status": "succeeded", "results": { "documents": [ @@ -615,13 +390,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:39.7347707Z", + "lastUpdateDateTime": "2022-10-17T18:50:32.8689849Z", "status": "succeeded", "results": { "documents": [ @@ -639,7 +414,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:38.1996211Z", + "lastUpdateDateTime": "2022-10-17T18:50:27.1855081Z", "status": "succeeded", "results": { "documents": [ @@ -673,25 +448,25 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:10:50.4476084Z", + "lastUpdateDateTime": "2022-10-17T18:50:26.9232774Z", "status": "succeeded", "results": { "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -702,13 +477,13 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:10:37.6836202Z", + "lastUpdateDateTime": "2022-10-17T18:50:25.8476218Z", "status": "succeeded", "results": { "documents": [ @@ -724,14 +499,14 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:10:36.950328Z", + "lastUpdateDateTime": "2022-10-17T18:50:31.5096745Z", "status": "succeeded", "results": { "documents": [ @@ -742,14 +517,14 @@ } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { "kind": "CustomEntityRecognitionLROResults", "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:10:37.1181673Z", + "lastUpdateDateTime": "2022-10-17T18:50:25.8203611Z", "status": "succeeded", "results": { "documents": [ @@ -763,6 +538,24 @@ "projectName": "custom_entities_project_name", "deploymentName": "custom_entities_project_name" } + }, + { + "kind": "HealthcareLROResults", + "taskName": "8", + "lastUpdateDateTime": "2022-10-17T18:50:26.888393Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } } ] } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_empty_credential_class.json index 7cf1db4e5e81..00361c35dfc9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "594", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -59,10 +59,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "3d1f23c9-7a1a-4632-ad48-0fe149ab3a55", + "apim-request-id": "37bd0f6e-7810-4cca-8b6f-a219cf4f0ae9", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Thu, 09 Jun 2022 17:09:18 GMT" + "Date": "Mon, 17 Oct 2022 18:49:28 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_entity_action_resolutions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_entity_action_resolutions.json new file mode 100644 index 000000000000..423403840eae --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_entity_action_resolutions.json @@ -0,0 +1,134 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "272", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The cat is 1 year old and weighs 10 pounds.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "EntityRecognition", + "parameters": { + "modelVersion": "2022-10-01-preview", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "11ef9ad5-0957-4dc5-83dd-6d1b9a24629e", + "Content-Length": "0", + "Date": "Tue, 18 Oct 2022 20:15:12 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/749f470d-c07b-4dd5-b411-7f8b4061dc5a?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/749f470d-c07b-4dd5-b411-7f8b4061dc5a?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a588747f-7f55-4afc-945c-e77a501f1231", + "Content-Length": "901", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 18 Oct 2022 20:15:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "jobId": "749f470d-c07b-4dd5-b411-7f8b4061dc5a", + "lastUpdateDateTime": "2022-10-18T20:15:14Z", + "createdDateTime": "2022-10-18T20:15:13Z", + "expirationDateTime": "2022-10-19T20:15:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-18T20:15:14.69759Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "1 year old", + "category": "Quantity", + "subcategory": "Age", + "offset": 11, + "length": 10, + "confidenceScore": 0.97, + "resolutions": [ + { + "resolutionKind": "AgeResolution", + "unit": "Year", + "value": 1.0 + } + ] + }, + { + "text": "10 pounds", + "category": "Quantity", + "subcategory": "Dimension", + "offset": 33, + "length": 9, + "confidenceScore": 0.8, + "resolutions": [ + { + "resolutionKind": "WeightResolution", + "unit": "Pound", + "value": 10.0 + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_action_with_options.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_action_with_options.json new file mode 100644 index 000000000000..fb7db8e17199 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_action_with_options.json @@ -0,0 +1,145 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1862", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "sentenceCount": 5, + "sortBy": "Rank", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "cb67f488-396d-4a40-b705-a69914f9df3b", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 21:56:48 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/01be8379-57fc-4e04-8e02-aeb2f9daf942?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "232" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/01be8379-57fc-4e04-8e02-aeb2f9daf942?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "502066a2-553e-46b3-8a6c-644c53832614", + "Content-Length": "1673", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 21:56:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "210" + }, + "ResponseBody": { + "jobId": "01be8379-57fc-4e04-8e02-aeb2f9daf942", + "lastUpdateDateTime": "2022-10-11T21:56:49Z", + "createdDateTime": "2022-10-11T21:56:48Z", + "expirationDateTime": "2022-10-12T21:56:48Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T21:56:49.3226846Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 1, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "sentences": [ + { + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy.", + "rankScore": 0.31, + "offset": 0, + "length": 176 + }, + { + "text": "The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis.", + "rankScore": 1.0, + "offset": 177, + "length": 164 + }, + { + "text": "Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU.", + "rankScore": 0.46, + "offset": 342, + "length": 172 + }, + { + "text": "That plan is now in tatters and her political future appears uncertain.", + "rankScore": 0.24, + "offset": 515, + "length": 71 + }, + { + "text": "This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "rankScore": 0.22, + "offset": 1491, + "length": 136 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_partial_results.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_partial_results.json new file mode 100644 index 000000000000..1357d9db1f7a --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_extract_summary_partial_results.json @@ -0,0 +1,129 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "251", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "hello world", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "61be3de1-76e9-4b96-bead-d23d19c78aaf", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:02:50 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/44be5cf7-82fd-4e55-99a3-c2da2f3f4028?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "385" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/44be5cf7-82fd-4e55-99a3-c2da2f3f4028?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab828e01-c995-4851-b57e-95119a2c849f", + "Content-Length": "843", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:02:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "240" + }, + "ResponseBody": { + "jobId": "44be5cf7-82fd-4e55-99a3-c2da2f3f4028", + "lastUpdateDateTime": "2022-10-11T22:02:51Z", + "createdDateTime": "2022-10-11T22:02:50Z", + "expirationDateTime": "2022-10-12T22:02:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:02:51.3190361Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 1, + "transactionsCount": 1 + }, + "documents": [ + { + "id": "2", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "sentences": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid Document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_healthcare_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_healthcare_action.json index a0b4b00cec52..a22b953c31f8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_healthcare_action.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_healthcare_action.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "391", + "Content-Length": "453", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -37,6 +37,8 @@ "kind": "Healthcare", "parameters": { "modelVersion": "latest", + "fhirVersion": "4.0.1", + "documentType": "HistoryAndPhysical", "stringIndexType": "UnicodeCodePoint" } } @@ -44,41 +46,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7de36ce7-ee3c-478f-b47b-4059fd51b010", + "apim-request-id": "600df844-442f-42a9-81c7-a53b1191e65a", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:12:46 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b89699e5-70da-4fc8-86ec-44aeb7d37ee7?api-version=2022-05-01", + "Date": "Tue, 11 Oct 2022 22:20:28 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f71ff66a-8908-4439-9857-b78aa77d6fd0?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-envoy-upstream-service-time": "414" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b89699e5-70da-4fc8-86ec-44aeb7d37ee7?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f71ff66a-8908-4439-9857-b78aa77d6fd0?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db6da350-f3fb-4cb3-8873-5d19aba8d49e", - "Content-Length": "4712", + "apim-request-id": "be62bc19-fc2a-46a2-88b7-915f65113260", + "Content-Length": "17155", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:12:50 GMT", + "Date": "Tue, 11 Oct 2022 22:20:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { - "jobId": "b89699e5-70da-4fc8-86ec-44aeb7d37ee7", - "lastUpdatedDateTime": "2022-06-23T02:12:47Z", - "createdDateTime": "2022-06-23T02:12:46Z", - "expirationDateTime": "2022-06-24T02:12:46Z", + "jobId": "f71ff66a-8908-4439-9857-b78aa77d6fd0", + "lastUpdateDateTime": "2022-10-11T22:20:31Z", + "createdDateTime": "2022-10-11T22:20:27Z", + "expirationDateTime": "2022-10-12T22:20:27Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +92,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:12:47.1308918Z", + "lastUpdateDateTime": "2022-10-11T22:20:31.7277066Z", "status": "succeeded", "results": { "statistics": { @@ -306,7 +308,404 @@ } ], "relations": [], - "warnings": [] + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "f894bf05-f015-493f-8dcb-2ee5b18bf93f", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:f894bf05-f015-493f-8dcb-2ee5b18bf93f" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/ce52535d-8774-4b7b-8cbc-2fe13afb5375", + "resource": { + "resourceType": "Composition", + "id": "ce52535d-8774-4b7b-8cbc-2fe13afb5375", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/04ec5016-e052-46e0-ad86-448e2b8a39b0", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/0e26dde0-78ff-457f-89e7-c03d82b6c7ce", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/0058e873-1095-409e-a6e2-e88071a92894", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EPatient does not suffer from high blood pressure.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/063951ca-de20-47c4-bf88-30cca0f3ddff", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/0058e873-1095-409e-a6e2-e88071a92894", + "resource": { + "resourceType": "Practitioner", + "id": "0058e873-1095-409e-a6e2-e88071a92894", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/04ec5016-e052-46e0-ad86-448e2b8a39b0", + "resource": { + "resourceType": "Patient", + "id": "04ec5016-e052-46e0-ad86-448e2b8a39b0", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/0e26dde0-78ff-457f-89e7-c03d82b6c7ce", + "resource": { + "resourceType": "Encounter", + "id": "0e26dde0-78ff-457f-89e7-c03d82b6c7ce", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/04ec5016-e052-46e0-ad86-448e2b8a39b0", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "Observation/020e3cc6-a8f2-48a8-9274-79f67add55c3", + "resource": { + "resourceType": "Observation", + "id": "020e3cc6-a8f2-48a8-9274-79f67add55c3", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 29 + }, + { + "url": "length", + "valueInteger": 19 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "final", + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "exam", + "display": "Exam" + } + ], + "text": "Exam" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0020538", + "display": "Hypertensive disease" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000023317" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1017493" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccs", + "code": "7.1" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000015800" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "397" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "0571-5243" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "HYPERTENS" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U002034" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0000822" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "I10-I15.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "I10-I15.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "I10" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "997.91" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU035456" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "K85004" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U002317" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85063723" + }, + { + "system": "http://loinc.org", + "code": "LA14293-7" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10020772" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "33288" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "34" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D006973" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mth", + "code": "005" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthicd9", + "code": "997.91" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "00905" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cptac", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E13785" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctrp", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "1908" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_gdc", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000458091" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/noc", + "code": "060808" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU002068" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pcds", + "code": "PRB_11000.06" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000686951" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "23830" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "XE0Ub" + }, + { + "system": "http://snomed.info/sct", + "code": "F-70700" + }, + { + "system": "http://snomed.info/sct", + "code": "D3-02000" + }, + { + "system": "http://snomed.info/sct", + "code": "38341003" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0210" + } + ], + "text": "high blood pressure" + }, + "subject": { + "reference": "Patient/04ec5016-e052-46e0-ad86-448e2b8a39b0", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/0e26dde0-78ff-457f-89e7-c03d82b6c7ce", + "type": "Encounter", + "display": "unknown" + }, + "interpretation": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "code": "NEG", + "display": "Negative" + } + ], + "text": "Negative" + } + ] + } + }, + { + "fullUrl": "List/063951ca-de20-47c4-bf88-30cca0f3ddff", + "resource": { + "resourceType": "List", + "id": "063951ca-de20-47c4-bf88-30cca0f3ddff", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/04ec5016-e052-46e0-ad86-448e2b8a39b0", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/0e26dde0-78ff-457f-89e7-c03d82b6c7ce", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "Observation/020e3cc6-a8f2-48a8-9274-79f67add55c3", + "type": "Observation", + "display": "high blood pressure" + } + } + ] + } + } + ] + } }, { "id": "1", @@ -462,6 +861,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -475,6 +875,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { @@ -488,7 +889,338 @@ ] } ], - "warnings": [] + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "7efd83e8-c256-4071-957d-e18f1a2b366f", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:7efd83e8-c256-4071-957d-e18f1a2b366f" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/4534c565-7f6c-47ed-9a97-b6301de7f184", + "resource": { + "resourceType": "Composition", + "id": "4534c565-7f6c-47ed-9a97-b6301de7f184", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/7136608a-6d29-4e23-809d-2e7bf0f9300c", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/31f5c566-a50d-4265-8922-04972e028e24", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/2e6e7bde-dec9-4a14-b824-cc5c1e91ed14", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EPrescribed 100mg ibuprofen, taken twice daily.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/26afc605-debb-4b9c-9fd6-a3051b90e65b", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/2e6e7bde-dec9-4a14-b824-cc5c1e91ed14", + "resource": { + "resourceType": "Practitioner", + "id": "2e6e7bde-dec9-4a14-b824-cc5c1e91ed14", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/7136608a-6d29-4e23-809d-2e7bf0f9300c", + "resource": { + "resourceType": "Patient", + "id": "7136608a-6d29-4e23-809d-2e7bf0f9300c", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/31f5c566-a50d-4265-8922-04972e028e24", + "resource": { + "resourceType": "Encounter", + "id": "31f5c566-a50d-4265-8922-04972e028e24", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/7136608a-6d29-4e23-809d-2e7bf0f9300c", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "MedicationStatement/5f8b5205-f4c1-4a73-880b-7c77b79c48d6", + "resource": { + "resourceType": "MedicationStatement", + "id": "5f8b5205-f4c1-4a73-880b-7c77b79c48d6", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 17 + }, + { + "url": "length", + "valueInteger": 9 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "active", + "medicationCodeableConcept": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0020740", + "display": "ibuprofen" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000019879" + }, + { + "system": "http://www.whocc.no/atc", + "code": "M01AE01" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "0046165" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000006519" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2270-2077" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/drugbank", + "code": "DB01050" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/gs", + "code": "1611" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh97005926" + }, + { + "system": "http://loinc.org", + "code": "LP16165-0" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "40458" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mmsl", + "code": "d00015" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D007052" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthspl", + "code": "WK2XYI10QM" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C561" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctrp", + "code": "C561" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dcp", + "code": "00803" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dtp", + "code": "NSC0256857" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "WK2XYI10QM" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000613511" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nddf", + "code": "002377" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000040475" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "x02MO" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rxnorm", + "code": "5640" + }, + { + "system": "http://snomed.info/sct", + "code": "E-7772" + }, + { + "system": "http://snomed.info/sct", + "code": "C-603C0" + }, + { + "system": "http://snomed.info/sct", + "code": "387207008" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/usp", + "code": "m39860" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/uspmg", + "code": "MTHU000060" + }, + { + "system": "http://hl7.org/fhir/ndfrt", + "code": "4017840" + } + ], + "text": "ibuprofen" + }, + "subject": { + "reference": "Patient/7136608a-6d29-4e23-809d-2e7bf0f9300c", + "type": "Patient" + }, + "context": { + "reference": "Encounter/31f5c566-a50d-4265-8922-04972e028e24", + "type": "Encounter", + "display": "unknown" + }, + "dosage": [ + { + "text": "100mg", + "timing": { + "repeat": { + "frequency": 2, + "period": 1, + "periodUnit": "d" + }, + "code": { + "text": "twice daily" + } + }, + "doseAndRate": [ + { + "doseQuantity": { + "value": 100 + } + } + ] + } + ] + } + }, + { + "fullUrl": "List/26afc605-debb-4b9c-9fd6-a3051b90e65b", + "resource": { + "resourceType": "List", + "id": "26afc605-debb-4b9c-9fd6-a3051b90e65b", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/7136608a-6d29-4e23-809d-2e7bf0f9300c", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/31f5c566-a50d-4265-8922-04972e028e24", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "MedicationStatement/5f8b5205-f4c1-4a73-880b-7c77b79c48d6", + "type": "MedicationStatement", + "display": "ibuprofen" + } + } + ] + } + } + ] + } } ], "errors": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_invalid_language_hint_method.json index 8fe4813333e1..69288e4febd7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "643", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -59,76 +59,53 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6c89a09a-32ba-4608-a0ca-e99022d5e7aa", + "apim-request-id": "4f8b3c84-906d-426a-9f10-c56fadf20135", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:09:53 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3fe70a4b-9543-4507-b0e1-c10480730a70?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:52 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/055d193e-2748-4f71-b268-91f184cc6b4b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "257" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3fe70a4b-9543-4507-b0e1-c10480730a70?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/055d193e-2748-4f71-b268-91f184cc6b4b?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9f0f01d-22a8-474d-80e6-ec99ecd16093", - "Content-Length": "2421", + "apim-request-id": "01a864c2-f44c-4830-89a9-a440b125e14f", + "Content-Length": "1882", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:59 GMT", + "Date": "Mon, 17 Oct 2022 18:49:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { - "jobId": "3fe70a4b-9543-4507-b0e1-c10480730a70", - "lastUpdatedDateTime": "2022-06-09T17:09:56Z", - "createdDateTime": "2022-06-09T17:09:53Z", - "expirationDateTime": "2022-06-10T17:09:53Z", + "jobId": "055d193e-2748-4f71-b268-91f184cc6b4b", + "lastUpdateDateTime": "2022-10-17T18:49:54Z", + "createdDateTime": "2022-10-17T18:49:52Z", + "expirationDateTime": "2022-10-18T18:49:52Z", "status": "running", "errors": [], "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "items": [ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:56.1307326Z", - "status": "succeeded", - "results": { - "documents": [], - "errors": [ - { - "id": "0", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "KeyPhraseExtractionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:09:55.6855445Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.3768626Z", "status": "succeeded", "results": { "documents": [], @@ -140,7 +117,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,fi,hu,nl,no,pl,ru,sv,tr,ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } @@ -151,7 +128,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:09:56.0485502Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.0273609Z", "status": "succeeded", "results": { "documents": [], @@ -163,7 +140,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } @@ -174,7 +151,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:55.6002034Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.1986184Z", "status": "succeeded", "results": { "documents": [], @@ -186,7 +163,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=entity-linking" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=entity-linking" } } } @@ -199,159 +176,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3fe70a4b-9543-4507-b0e1-c10480730a70?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/055d193e-2748-4f71-b268-91f184cc6b4b?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4c72550-5078-4123-a051-e236cbba1d8f", - "Content-Length": "2421", + "apim-request-id": "1a692579-4841-4d94-9bba-bd28a96ccb85", + "Content-Length": "3471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:04 GMT", + "Date": "Mon, 17 Oct 2022 18:50:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" - }, - "ResponseBody": { - "jobId": "3fe70a4b-9543-4507-b0e1-c10480730a70", - "lastUpdatedDateTime": "2022-06-09T17:10:00Z", - "createdDateTime": "2022-06-09T17:09:53Z", - "expirationDateTime": "2022-06-10T17:09:53Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "items": [ - { - "kind": "EntityRecognitionLROResults", - "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:56.1307326Z", - "status": "succeeded", - "results": { - "documents": [], - "errors": [ - { - "id": "0", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "KeyPhraseExtractionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:09:55.6855445Z", - "status": "succeeded", - "results": { - "documents": [], - "errors": [ - { - "id": "0", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" - } - } - } - ], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:09:56.0485502Z", - "status": "succeeded", - "results": { - "documents": [], - "errors": [ - { - "id": "0", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-01-15" - } - }, - { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:55.6002034Z", - "status": "succeeded", - "results": { - "documents": [], - "errors": [ - { - "id": "0", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=entity-linking" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3fe70a4b-9543-4507-b0e1-c10480730a70?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b14983a9-62ee-4842-9255-4ca4e8713cd6", - "Content-Length": "2961", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { - "jobId": "3fe70a4b-9543-4507-b0e1-c10480730a70", - "lastUpdatedDateTime": "2022-06-09T17:10:07Z", - "createdDateTime": "2022-06-09T17:09:53Z", - "expirationDateTime": "2022-06-10T17:09:53Z", + "jobId": "055d193e-2748-4f71-b268-91f184cc6b4b", + "lastUpdateDateTime": "2022-10-17T18:50:00Z", + "createdDateTime": "2022-10-17T18:49:52Z", + "expirationDateTime": "2022-10-18T18:49:52Z", "status": "succeeded", "errors": [], "tasks": { @@ -363,7 +211,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:56.1307326Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.3768626Z", "status": "succeeded", "results": { "documents": [], @@ -375,7 +223,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,fi,hu,nl,no,pl,ru,sv,tr,ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } @@ -386,7 +234,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:09:55.6855445Z", + "lastUpdateDateTime": "2022-10-17T18:49:58.8286155Z", "status": "succeeded", "results": { "documents": [], @@ -398,18 +246,18 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,pt-BR,pt-PT,af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,el,eo,et,eu,fa,fi,fil,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:09:56.0485502Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.0273609Z", "status": "succeeded", "results": { "documents": [], @@ -421,7 +269,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } @@ -432,7 +280,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:55.6002034Z", + "lastUpdateDateTime": "2022-10-17T18:49:54.1986184Z", "status": "succeeded", "results": { "documents": [], @@ -444,7 +292,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=entity-linking" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=entity-linking" } } } @@ -455,7 +303,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:10:07.6186512Z", + "lastUpdateDateTime": "2022-10-17T18:50:00.0803479Z", "status": "succeeded", "results": { "documents": [], @@ -467,12 +315,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,ja,ko,zh-Hans,zh-Hant,de,es,fr,hi,no,tr,it,nl,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,it,af,ar,bg,br,bs,ca,cy,da,de,el,eo,fa,fil,fy,ga,gd,gl,ha,hi,hr,id,ku,mg,mk,ms,nl,no,ps,ro,ru,sl,so,sq,sr,su,sv,sw,ur,yi,am,as,az,be,bn,cs,et,eu,fi,gu,he,hu,hy,ja,jv,ka,kk,km,kn,ko,ky,la,lo,lt,lv,ml,mn,mr,my,ne,om,or,pa,pl,sa,sd,si,sk,ta,te,th,tr,ug,uk,uz,vi,xh,zh-Hans,zh-Hant,es,fr,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multi_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multi_label_classify.json index fcd36d10e65a..b929d2a959a7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multi_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multi_label_classify.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "938", + "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,49 +36,49 @@ "taskName": "0", "kind": "CustomMultiLabelClassification", "parameters": { - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "91d0b25c-6a3c-4551-b609-946dde9dd65b", + "apim-request-id": "935099df-315e-423f-8f16-ad4fca3c88c6", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:12:12 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e1ac6b4e-5a75-4a91-89d5-ce82101243b0?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:59 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7c1e65b0-6518-480f-92ac-28a2e1d94677?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e1ac6b4e-5a75-4a91-89d5-ce82101243b0?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7c1e65b0-6518-480f-92ac-28a2e1d94677?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d621df6-d915-48cb-8eab-910f18aa8109", - "Content-Length": "1013", + "apim-request-id": "80920614-927f-4591-9d1e-f8759d3585fb", + "Content-Length": "1005", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:16 GMT", + "Date": "Mon, 17 Oct 2022 18:51:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { - "jobId": "e1ac6b4e-5a75-4a91-89d5-ce82101243b0", - "lastUpdatedDateTime": "2022-06-09T17:12:12Z", - "createdDateTime": "2022-06-09T17:12:12Z", - "expirationDateTime": "2022-06-10T17:12:12Z", + "jobId": "7c1e65b0-6518-480f-92ac-28a2e1d94677", + "lastUpdateDateTime": "2022-10-17T18:50:59Z", + "createdDateTime": "2022-10-17T18:50:59Z", + "expirationDateTime": "2022-10-18T18:50:59Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:12:12.6925222Z", + "lastUpdateDateTime": "2022-10-17T18:50:59.930364Z", "status": "succeeded", "results": { "statistics": { @@ -134,8 +134,8 @@ } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_of_same_action_with_partial_results.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_of_same_action_with_partial_results.json index 4af600c10317..35064dc4323b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_of_same_action_with_partial_results.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_of_same_action_with_partial_results.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "761", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -53,41 +53,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "12c97a00-1418-4c23-aece-e55b5992ec7f", + "apim-request-id": "a17138a1-2744-49b8-993e-84c252cf6611", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:29:36 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a38b58fe-8024-4e2d-ab92-b2c9638bccf1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:47 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f1d88f8c-c4b3-426b-a393-b720a58f8dcd?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "325" + "x-envoy-upstream-service-time": "170" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a38b58fe-8024-4e2d-ab92-b2c9638bccf1?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f1d88f8c-c4b3-426b-a393-b720a58f8dcd?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36cae872-0537-4627-833d-0e991f2c5d62", + "apim-request-id": "9738d7cb-dde9-474c-a0ba-68eee41121e4", "Content-Length": "4117", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:29:42 GMT", + "Date": "Mon, 17 Oct 2022 18:50:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { - "jobId": "a38b58fe-8024-4e2d-ab92-b2c9638bccf1", - "lastUpdatedDateTime": "2022-06-09T17:29:41Z", - "createdDateTime": "2022-06-09T17:29:37Z", - "expirationDateTime": "2022-06-10T17:29:37Z", + "jobId": "f1d88f8c-c4b3-426b-a393-b720a58f8dcd", + "lastUpdateDateTime": "2022-10-17T18:50:49Z", + "createdDateTime": "2022-10-17T18:50:47Z", + "expirationDateTime": "2022-10-18T18:50:47Z", "status": "succeeded", "errors": [], "tasks": { @@ -99,7 +99,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:29:41.2348593Z", + "lastUpdateDateTime": "2022-10-17T18:50:49.1825597Z", "status": "succeeded", "results": { "documents": [ @@ -201,7 +201,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:29:39.477272Z", + "lastUpdateDateTime": "2022-10-17T18:50:49.3772726Z", "status": "succeeded", "results": { "documents": [ @@ -261,7 +261,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:29:39.8686681Z", + "lastUpdateDateTime": "2022-10-17T18:50:49.2740269Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_pages_of_results_returned_successfully.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_pages_of_results_returned_successfully.json index 9e9fba2a742c..819da93355c5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_pages_of_results_returned_successfully.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_multiple_pages_of_results_returned_successfully.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "1889", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -179,89 +179,53 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3e02216f-1b6e-4cce-8539-323af0dbe35a", + "apim-request-id": "6fe6da64-59be-4949-9e75-078d794c97ff", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:10:16 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:10 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "934" + "x-envoy-upstream-service-time": "868" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09c5d0a5-43b0-4131-a16e-fa1a9e1bce9d", - "Content-Length": "280", + "apim-request-id": "6a4c3ae6-900a-43e0-ab8a-8aa84a52da40", + "Content-Length": "9793", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:21 GMT", + "Date": "Mon, 17 Oct 2022 18:50:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "377" }, "ResponseBody": { - "jobId": "c4ad7d9c-ad6e-427b-8192-dad85fdde870", - "lastUpdatedDateTime": "2022-06-09T17:10:22Z", - "createdDateTime": "2022-06-09T17:10:16Z", - "expirationDateTime": "2022-06-10T17:10:16Z", + "jobId": "3ee16e1d-abd2-408c-b2c0-9e684370a2f8", + "lastUpdateDateTime": "2022-10-17T18:50:16Z", + "createdDateTime": "2022-10-17T18:50:10Z", + "expirationDateTime": "2022-10-18T18:50:10Z", "status": "running", "errors": [], "tasks": { - "completed": 0, + "completed": 2, "failed": 0, - "inProgress": 5, - "total": 5, - "items": [] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?api-version=2022-05-01\u0026showStats=True", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "514de72e-63ff-4c13-8e64-0cb7ab768504", - "Content-Length": "14873", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "723" - }, - "ResponseBody": { - "jobId": "c4ad7d9c-ad6e-427b-8192-dad85fdde870", - "lastUpdatedDateTime": "2022-06-09T17:10:27Z", - "createdDateTime": "2022-06-09T17:10:16Z", - "expirationDateTime": "2022-06-10T17:10:16Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, + "inProgress": 3, "total": 5, "items": [ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:26.357003Z", + "lastUpdateDateTime": "2022-10-17T18:50:16.1990045Z", "status": "succeeded", "results": { "statistics": { @@ -493,429 +457,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:23.3308281Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 20, - "validDocumentsCount": 20, - "erroneousDocumentsCount": 0, - "transactionsCount": 20 - }, - "documents": [ - { - "redactedText": "hello world", - "id": "0", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "1", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "2", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "3", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "4", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "5", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "6", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "7", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "8", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "9", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "10", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "11", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "12", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "13", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "14", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "15", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "16", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "17", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "18", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "19", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, - { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:25.5234125Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 20, - "validDocumentsCount": 20, - "erroneousDocumentsCount": 0, - "transactionsCount": 20 - }, - "documents": [ - { - "id": "0", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "2", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "3", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "4", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "5", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "6", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "7", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "8", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "9", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "10", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "11", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "12", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "13", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "14", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "15", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "16", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "17", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "18", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:10:27.4359085Z", + "lastUpdateDateTime": "2022-10-17T18:50:15.267163Z", "status": "succeeded", "results": { "statistics": { @@ -933,16 +481,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -960,16 +508,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -987,16 +535,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1014,16 +562,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1041,16 +589,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1068,16 +616,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1095,16 +643,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1122,16 +670,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1149,16 +697,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1176,16 +724,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1203,16 +751,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1230,16 +778,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1257,16 +805,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1284,16 +832,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1311,16 +859,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1338,16 +886,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1365,16 +913,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1392,16 +940,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1419,16 +967,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1446,16 +994,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1467,39 +1015,39 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] }, - "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-05-01" + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4282867-52af-4a1a-b091-170db0b4aa51", - "Content-Length": "17129", + "apim-request-id": "823c65c8-08fe-4c61-a499-63ff242bb049", + "Content-Length": "17136", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:33 GMT", + "Date": "Mon, 17 Oct 2022 18:50:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "937" + "x-envoy-upstream-service-time": "1051" }, "ResponseBody": { - "jobId": "c4ad7d9c-ad6e-427b-8192-dad85fdde870", - "lastUpdatedDateTime": "2022-06-09T17:10:32Z", - "createdDateTime": "2022-06-09T17:10:16Z", - "expirationDateTime": "2022-06-10T17:10:16Z", + "jobId": "3ee16e1d-abd2-408c-b2c0-9e684370a2f8", + "lastUpdateDateTime": "2022-10-17T18:50:17Z", + "createdDateTime": "2022-10-17T18:50:10Z", + "expirationDateTime": "2022-10-18T18:50:10Z", "status": "succeeded", "errors": [], "tasks": { @@ -1511,7 +1059,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:32.9504525Z", + "lastUpdateDateTime": "2022-10-17T18:50:16.6493956Z", "status": "succeeded", "results": { "statistics": { @@ -1709,7 +1257,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:26.357003Z", + "lastUpdateDateTime": "2022-10-17T18:50:16.1990045Z", "status": "succeeded", "results": { "statistics": { @@ -1941,13 +1489,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:23.3308281Z", + "lastUpdateDateTime": "2022-10-17T18:50:17.4616485Z", "status": "succeeded", "results": { "statistics": { @@ -2165,7 +1713,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:25.5234125Z", + "lastUpdateDateTime": "2022-10-17T18:50:17.3882905Z", "status": "succeeded", "results": { "statistics": { @@ -2363,7 +1911,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:10:27.4359085Z", + "lastUpdateDateTime": "2022-10-17T18:50:15.267163Z", "status": "succeeded", "results": { "statistics": { @@ -2381,16 +1929,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2408,16 +1956,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2435,16 +1983,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2462,16 +2010,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2489,16 +2037,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2516,16 +2064,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2543,16 +2091,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2570,16 +2118,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2597,16 +2145,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2624,16 +2172,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2651,16 +2199,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2678,16 +2226,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2705,16 +2253,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2732,16 +2280,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2759,16 +2307,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2786,16 +2334,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2813,16 +2361,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2840,16 +2388,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2867,16 +2415,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2894,16 +2442,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2915,39 +2463,39 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] }, - "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-05-01" + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c4ad7d9c-ad6e-427b-8192-dad85fdde870?api-version=2022-05-01\u0026showStats=true\u0026top=5\u0026skip=20", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3ee16e1d-abd2-408c-b2c0-9e684370a2f8?api-version=2022-10-01-preview\u0026showStats=true\u0026top=5\u0026skip=20", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ea75295-9fd4-4be8-83f8-6fe4092325eb", - "Content-Length": "5586", + "apim-request-id": "5a53aeaa-ac49-42d2-8b3a-32dfc88df270", + "Content-Length": "5585", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:34 GMT", + "Date": "Mon, 17 Oct 2022 18:50:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "360" + "x-envoy-upstream-service-time": "296" }, "ResponseBody": { - "jobId": "c4ad7d9c-ad6e-427b-8192-dad85fdde870", - "lastUpdatedDateTime": "2022-06-09T17:10:32Z", - "createdDateTime": "2022-06-09T17:10:16Z", - "expirationDateTime": "2022-06-10T17:10:16Z", + "jobId": "3ee16e1d-abd2-408c-b2c0-9e684370a2f8", + "lastUpdateDateTime": "2022-10-17T18:50:17Z", + "createdDateTime": "2022-10-17T18:50:10Z", + "expirationDateTime": "2022-10-18T18:50:10Z", "status": "succeeded", "errors": [], "tasks": { @@ -2959,7 +2507,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:32.9504525Z", + "lastUpdateDateTime": "2022-10-17T18:50:16.6493956Z", "status": "succeeded", "results": { "statistics": { @@ -3022,7 +2570,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:10:26.357003Z", + "lastUpdateDateTime": "2022-10-17T18:50:16.1990045Z", "status": "succeeded", "results": { "statistics": { @@ -3089,13 +2637,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:10:23.3308281Z", + "lastUpdateDateTime": "2022-10-17T18:50:17.4616485Z", "status": "succeeded", "results": { "statistics": { @@ -3163,7 +2711,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:10:25.5234125Z", + "lastUpdateDateTime": "2022-10-17T18:50:17.3882905Z", "status": "succeeded", "results": { "statistics": { @@ -3226,7 +2774,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:10:27.4359085Z", + "lastUpdateDateTime": "2022-10-17T18:50:15.267163Z", "status": "succeeded", "results": { "statistics": { @@ -3244,16 +2792,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3271,16 +2819,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3298,16 +2846,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3325,16 +2873,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3352,16 +2900,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3373,7 +2921,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_out_of_order_ids_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_out_of_order_ids_multiple_tasks.json index 36462e249059..4a39d453410d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_out_of_order_ids_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_out_of_order_ids_multiple_tasks.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "706", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -74,53 +74,117 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a4c2fe43-6b23-4c8c-8396-acdfa7520c12", + "apim-request-id": "b4985b40-fb08-4385-899b-fc9de6510829", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:09:19 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/53c2191a-dd5e-4821-86e1-b2749b0b5efe?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:29 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/caa3d7cb-35b3-4c3b-813f-a408133db15a?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "291" + "x-envoy-upstream-service-time": "276" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/53c2191a-dd5e-4821-86e1-b2749b0b5efe?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/caa3d7cb-35b3-4c3b-813f-a408133db15a?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9aec5c45-8aad-4c32-a08d-7493c32fd663", - "Content-Length": "626", + "apim-request-id": "48acd6d2-8410-4c1a-9a3c-d9cd4ab1d7fb", + "Content-Length": "2557", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:24 GMT", + "Date": "Mon, 17 Oct 2022 18:49:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "242" }, "ResponseBody": { - "jobId": "53c2191a-dd5e-4821-86e1-b2749b0b5efe", - "lastUpdatedDateTime": "2022-06-09T17:09:23Z", - "createdDateTime": "2022-06-09T17:09:19Z", - "expirationDateTime": "2022-06-10T17:09:19Z", + "jobId": "caa3d7cb-35b3-4c3b-813f-a408133db15a", + "lastUpdateDateTime": "2022-10-17T18:49:32Z", + "createdDateTime": "2022-10-17T18:49:29Z", + "expirationDateTime": "2022-10-18T18:49:29Z", "status": "running", "errors": [], "tasks": { - "completed": 1, + "completed": 4, "failed": 0, - "inProgress": 4, + "inProgress": 1, "total": 5, "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-17T18:49:31.3122897Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:49:31.5228166Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:23.2311664Z", + "lastUpdateDateTime": "2022-10-17T18:49:32.6939616Z", "status": "succeeded", "results": { "documents": [ @@ -148,36 +212,140 @@ "errors": [], "modelVersion": "2021-06-01" } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-17T18:49:31.437871Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 + }, + "offset": 0, + "length": 2, + "text": ":)" + } + ], + "warnings": [] + }, + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 + }, + "offset": 0, + "length": 2, + "text": ":(" + } + ], + "warnings": [] + }, + { + "id": "19", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 + }, + "offset": 0, + "length": 2, + "text": ":P" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 + }, + "offset": 0, + "length": 2, + "text": ":D" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } } ] } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/53c2191a-dd5e-4821-86e1-b2749b0b5efe?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/caa3d7cb-35b3-4c3b-813f-a408133db15a?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25698276-30fd-489e-aa98-b016698d38a4", - "Content-Length": "2987", + "apim-request-id": "f8717427-ddd7-4586-b5ff-e401b9830190", + "Content-Length": "2993", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:30 GMT", + "Date": "Mon, 17 Oct 2022 18:49:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "234" }, "ResponseBody": { - "jobId": "53c2191a-dd5e-4821-86e1-b2749b0b5efe", - "lastUpdatedDateTime": "2022-06-09T17:09:28Z", - "createdDateTime": "2022-06-09T17:09:19Z", - "expirationDateTime": "2022-06-10T17:09:19Z", + "jobId": "caa3d7cb-35b3-4c3b-813f-a408133db15a", + "lastUpdateDateTime": "2022-10-17T18:49:37Z", + "createdDateTime": "2022-10-17T18:49:29Z", + "expirationDateTime": "2022-10-18T18:49:29Z", "status": "succeeded", "errors": [], "tasks": { @@ -189,7 +357,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:28.0207424Z", + "lastUpdateDateTime": "2022-10-17T18:49:31.3122897Z", "status": "succeeded", "results": { "documents": [ @@ -221,7 +389,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:09:28.2085011Z", + "lastUpdateDateTime": "2022-10-17T18:49:31.5228166Z", "status": "succeeded", "results": { "documents": [ @@ -247,13 +415,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:09:28.1920498Z", + "lastUpdateDateTime": "2022-10-17T18:49:37.4410848Z", "status": "succeeded", "results": { "documents": [ @@ -289,7 +457,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:23.2311664Z", + "lastUpdateDateTime": "2022-10-17T18:49:32.6939616Z", "status": "succeeded", "results": { "documents": [ @@ -321,7 +489,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:09:28.2247557Z", + "lastUpdateDateTime": "2022-10-17T18:49:31.437871Z", "status": "succeeded", "results": { "documents": [ @@ -352,17 +520,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -373,19 +541,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -398,16 +566,16 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -419,7 +587,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_partial_success_for_actions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_partial_success_for_actions.json index c032f8c6da4e..2cb9107ea819 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_partial_success_for_actions.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_partial_success_for_actions.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -45,108 +45,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "98eeaf71-63b0-4e44-866c-1fe564a8bb72", + "apim-request-id": "6cdac8e0-958f-4c3c-916e-d83b051ef1f0", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:10:58 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ccb179db-facd-4e93-a277-edecdea857c0?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:41 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f0323a18-b843-4c33-84fa-b62309964b0b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "305" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ccb179db-facd-4e93-a277-edecdea857c0?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f0323a18-b843-4c33-84fa-b62309964b0b?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca157daf-07b0-47ca-a1bb-37aa154e7812", - "Content-Length": "900", + "apim-request-id": "d664a21a-d33a-44a5-85ac-e3921200034c", + "Content-Length": "1685", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:11:03 GMT", + "Date": "Mon, 17 Oct 2022 18:50:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { - "jobId": "ccb179db-facd-4e93-a277-edecdea857c0", - "lastUpdatedDateTime": "2022-06-09T17:11:00Z", - "createdDateTime": "2022-06-09T17:10:58Z", - "expirationDateTime": "2022-06-10T17:10:58Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 1, - "failed": 0, - "inProgress": 1, - "total": 2, - "items": [ - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:11:00.8135827Z", - "status": "succeeded", - "results": { - "documents": [ - { - "redactedText": "I did not like the hotel we stayed at.", - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "1", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ccb179db-facd-4e93-a277-edecdea857c0?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db31eed9-eedb-49fc-82bd-263e14edac00", - "Content-Length": "1681", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:11:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "168" - }, - "ResponseBody": { - "jobId": "ccb179db-facd-4e93-a277-edecdea857c0", - "lastUpdatedDateTime": "2022-06-09T17:11:06Z", - "createdDateTime": "2022-06-09T17:10:58Z", - "expirationDateTime": "2022-06-10T17:10:58Z", + "jobId": "f0323a18-b843-4c33-84fa-b62309964b0b", + "lastUpdateDateTime": "2022-10-17T18:50:43Z", + "createdDateTime": "2022-10-17T18:50:41Z", + "expirationDateTime": "2022-10-18T18:50:41Z", "status": "succeeded", "errors": [], "tasks": { @@ -158,25 +91,25 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:11:06.9934054Z", + "lastUpdateDateTime": "2022-10-17T18:50:43.4486863Z", "status": "succeeded", "results": { "documents": [ { "id": "1", - "sentiment": "neutral", + "sentiment": "negative", "confidenceScores": { - "positive": 0.06, - "neutral": 0.55, - "negative": 0.39 + "positive": 0.02, + "neutral": 0.45, + "negative": 0.53 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "negative", "confidenceScores": { - "positive": 0.06, - "neutral": 0.55, - "negative": 0.39 + "positive": 0.02, + "neutral": 0.45, + "negative": 0.53 }, "offset": 0, "length": 38, @@ -190,16 +123,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.45, - "negative": 0.54 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.45, - "negative": 0.54 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -210,13 +143,13 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:11:00.8135827Z", + "lastUpdateDateTime": "2022-10-17T18:50:43.4839122Z", "status": "succeeded", "results": { "documents": [ @@ -235,7 +168,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027tr\u0027. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pass_cls.json index ff16275c34e6..724e3ac8b5c8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "219", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b1a86e7c-d4bf-4eb6-b37e-f50e5644a401", + "apim-request-id": "a7cd82d9-73d7-4786-90b2-2b0d4c0ae8af", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:10:11 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/172094cb-cc20-48f5-a803-a19605042ae1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:04 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4bc99bcb-7764-4861-8592-0802b43a70fa?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "263" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/172094cb-cc20-48f5-a803-a19605042ae1?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4bc99bcb-7764-4861-8592-0802b43a70fa?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33161298-09b0-499b-b1f4-c787983522f3", - "Content-Length": "672", + "apim-request-id": "31ec0ac9-5e49-47d2-ac7f-93c29e01bc15", + "Content-Length": "671", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:15 GMT", + "Date": "Mon, 17 Oct 2022 18:50:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { - "jobId": "172094cb-cc20-48f5-a803-a19605042ae1", - "lastUpdatedDateTime": "2022-06-09T17:10:13Z", - "createdDateTime": "2022-06-09T17:10:10Z", - "expirationDateTime": "2022-06-10T17:10:10Z", + "jobId": "4bc99bcb-7764-4861-8592-0802b43a70fa", + "lastUpdateDateTime": "2022-10-17T18:50:06Z", + "createdDateTime": "2022-10-17T18:50:04Z", + "expirationDateTime": "2022-10-18T18:50:04Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:13.1546837Z", + "lastUpdateDateTime": "2022-10-17T18:50:06.1052901Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_abstract_summary_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_abstract_summary_action.json new file mode 100644 index 000000000000..3dee4a299dca --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_abstract_summary_action.json @@ -0,0 +1,128 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1825", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "AbstractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6b6b97f1-792a-4213-97f1-c78eaedd37e6", + "Content-Length": "0", + "Date": "Wed, 19 Oct 2022 23:42:42 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c18c9590-5d82-4057-8f47-fc41be40d52f?api-version=2022-10-01-preview", + "Server": "istio-envoy", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "112", + "x-http2-stream-id": "3", + "x-ms-region": "East US" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c18c9590-5d82-4057-8f47-fc41be40d52f?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "301a225b-5d00-4299-a551-c17f0f8cc640", + "Content-Length": "918", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 19 Oct 2022 23:42:47 GMT", + "Server": "istio-envoy", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49", + "x-http2-stream-id": "3", + "x-ms-region": "East US" + }, + "ResponseBody": { + "jobId": "c18c9590-5d82-4057-8f47-fc41be40d52f", + "lastUpdatedDateTime": "2022-10-19T23:42:43Z", + "createdDateTime": "2022-10-19T23:42:42Z", + "expirationDateTime": "2022-10-20T23:42:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "AbstractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-19T23:42:43.7194344Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 1, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "summaries": [ + { + "text": "Foreign Secretary Boris Johnson resigns from the government. David Davis quit Sunday night over May\u0027s plan for post-EU trade. May appeared in Parliament on Monday to defend her plan.", + "contexts": [ + { + "offset": 0, + "length": 1627 + } + ] + } + ], + "id": "1", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_extract_summary_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_extract_summary_action.json new file mode 100644 index 000000000000..3e242b840907 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_passing_dict_extract_summary_action.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1916", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "70fec140-f377-4f1f-939a-61fd6977e484", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 21:56:20 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c651331-db86-40ca-b3c2-0901c2077a8e?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "381" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c651331-db86-40ca-b3c2-0901c2077a8e?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6129644a-db7e-4f1b-8d46-764a2f3a3063", + "Content-Length": "1553", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 21:56:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "jobId": "8c651331-db86-40ca-b3c2-0901c2077a8e", + "lastUpdateDateTime": "2022-10-11T21:56:22Z", + "createdDateTime": "2022-10-11T21:56:20Z", + "expirationDateTime": "2022-10-12T21:56:20Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T21:56:22.3545349Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 3 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "sentences": [ + { + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy.", + "rankScore": 0.31, + "offset": 0, + "length": 176 + }, + { + "text": "The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis.", + "rankScore": 1.0, + "offset": 177, + "length": 164 + }, + { + "text": "Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU.", + "rankScore": 0.46, + "offset": 342, + "length": 172 + } + ], + "warnings": [] + }, + { + "id": "2", + "statistics": { + "charactersCount": 49, + "transactionsCount": 1 + }, + "sentences": [ + { + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 49 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pii_action_categories_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pii_action_categories_filter.json index f61f482b568b..79d0c6575a7c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pii_action_categories_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_pii_action_categories_filter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "516", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -47,41 +47,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d3bab709-ea80-4640-950f-c19fa556b37e", + "apim-request-id": "7c5274e6-6ca4-4a35-985a-71d4028a8663", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:10:53 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/47547e32-2617-47ca-9d70-baf43cdef313?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:35 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7638b097-3291-4263-a869-96b88878da6b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "202" + "x-envoy-upstream-service-time": "184" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/47547e32-2617-47ca-9d70-baf43cdef313?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7638b097-3291-4263-a869-96b88878da6b?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58cecafa-525e-4eab-94c0-77d880231692", - "Content-Length": "1020", + "apim-request-id": "9a7056a0-2885-423b-80ed-c1b86e5131a8", + "Content-Length": "1018", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:58 GMT", + "Date": "Mon, 17 Oct 2022 18:50:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { - "jobId": "47547e32-2617-47ca-9d70-baf43cdef313", - "lastUpdatedDateTime": "2022-06-09T17:10:54Z", - "createdDateTime": "2022-06-09T17:10:53Z", - "expirationDateTime": "2022-06-10T17:10:53Z", + "jobId": "7638b097-3291-4263-a869-96b88878da6b", + "lastUpdateDateTime": "2022-10-17T18:50:38Z", + "createdDateTime": "2022-10-17T18:50:36Z", + "expirationDateTime": "2022-10-18T18:50:36Z", "status": "succeeded", "errors": [], "tasks": { @@ -93,7 +93,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:10:54.8895486Z", + "lastUpdateDateTime": "2022-10-17T18:50:38.116388Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_poller_metadata.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_poller_metadata.json index 2352abe5ef9e..1d39d0bdc1a3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_poller_metadata.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_poller_metadata.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "220", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -34,41 +34,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "eacdf7a6-a4e5-4f9f-a857-db70195b353a", + "apim-request-id": "470e1c53-7245-4735-a31e-e7efd8682442", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:11:39 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca072c7d-0d74-44af-9bd6-b4fa9c9c416e?api-version=2022-05-01", + "Date": "Mon, 10 Oct 2022 19:15:47 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/90c03aa5-2c8f-41ea-99df-3775f0fb2900?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "255" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca072c7d-0d74-44af-9bd6-b4fa9c9c416e?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/90c03aa5-2c8f-41ea-99df-3775f0fb2900?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e197e167-b37f-43e6-8617-7f7409a494ff", - "Content-Length": "679", + "apim-request-id": "efbd5a8e-5dd2-4fa9-94f7-5772cda59bc5", + "Content-Length": "678", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:11:44 GMT", + "Date": "Mon, 10 Oct 2022 19:15:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { - "jobId": "ca072c7d-0d74-44af-9bd6-b4fa9c9c416e", - "lastUpdatedDateTime": "2022-06-23T02:11:40Z", - "createdDateTime": "2022-06-23T02:11:39Z", - "expirationDateTime": "2022-06-24T02:11:39Z", + "jobId": "90c03aa5-2c8f-41ea-99df-3775f0fb2900", + "lastUpdateDateTime": "2022-10-10T19:15:50Z", + "createdDateTime": "2022-10-10T19:15:47Z", + "expirationDateTime": "2022-10-11T19:15:47Z", "status": "succeeded", "errors": [], "tasks": { @@ -80,7 +80,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:11:40.8943502Z", + "lastUpdateDateTime": "2022-10-10T19:15:50.6125398Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_recognize_custom_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_recognize_custom_entities.json index 7af212000e4e..c6eb5e139861 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_recognize_custom_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_recognize_custom_entities.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -45,41 +45,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a9d7aca3-3605-4022-8368-d0d467c09249", + "apim-request-id": "599e03f6-6d3e-483c-a9fa-7a7cd81f333e", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:12:18 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2a7a4eff-63f8-472f-9d69-45edc0182ce0?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:51:04 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1aee3b01-4de2-43a3-a90d-af1a34a3e03b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "550" + "x-envoy-upstream-service-time": "155" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2a7a4eff-63f8-472f-9d69-45edc0182ce0?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1aee3b01-4de2-43a3-a90d-af1a34a3e03b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "787f35ab-8352-45c1-8739-9b5cdeab3ec3", - "Content-Length": "3488", + "apim-request-id": "cefe113e-9dfb-4aa0-89e2-bbf72a1c3162", + "Content-Length": "3486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:12:22 GMT", + "Date": "Mon, 17 Oct 2022 18:51:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { - "jobId": "2a7a4eff-63f8-472f-9d69-45edc0182ce0", - "lastUpdatedDateTime": "2022-06-09T17:12:19Z", - "createdDateTime": "2022-06-09T17:12:18Z", - "expirationDateTime": "2022-06-10T17:12:18Z", + "jobId": "1aee3b01-4de2-43a3-a90d-af1a34a3e03b", + "lastUpdateDateTime": "2022-10-17T18:51:05Z", + "createdDateTime": "2022-10-17T18:51:05Z", + "expirationDateTime": "2022-10-18T18:51:05Z", "status": "succeeded", "errors": [], "tasks": { @@ -91,7 +91,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:12:19.1913919Z", + "lastUpdateDateTime": "2022-10-17T18:51:05.669636Z", "status": "succeeded", "results": { "statistics": { @@ -115,6 +115,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -129,20 +136,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -157,13 +150,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -171,6 +157,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -185,13 +185,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -199,13 +192,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -219,6 +205,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -258,13 +258,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -272,6 +265,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_sentiment_analysis_task_with_opinion_mining.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_sentiment_analysis_task_with_opinion_mining.json index 419f62f44d7d..e150c8758c9b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_sentiment_analysis_task_with_opinion_mining.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_sentiment_analysis_task_with_opinion_mining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "363", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -39,41 +39,77 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c2bd702c-08f2-429d-bac8-a1f4b60c4f67", + "apim-request-id": "2dc74d1d-c034-4de1-b458-14ccf73c59f5", "Content-Length": "0", - "Date": "Fri, 17 Jun 2022 17:35:22 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1aa27aa6-4933-47e4-8e6e-848dde499244?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:00 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea195a71-941e-4512-bebb-259d9cc92911?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "202" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1aa27aa6-4933-47e4-8e6e-848dde499244?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea195a71-941e-4512-bebb-259d9cc92911?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54835c6b-b5dd-4f72-b2c4-789ddbbb13d8", - "Content-Length": "2461", + "apim-request-id": "c2822bc1-fba8-4dcb-9adb-7053e1369caa", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 17 Jun 2022 17:35:27 GMT", + "Date": "Mon, 17 Oct 2022 18:49:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { - "jobId": "1aa27aa6-4933-47e4-8e6e-848dde499244", - "lastUpdatedDateTime": "2022-06-17T17:35:25Z", - "createdDateTime": "2022-06-17T17:35:22Z", - "expirationDateTime": "2022-06-18T17:35:22Z", + "jobId": "ea195a71-941e-4512-bebb-259d9cc92911", + "lastUpdateDateTime": "2022-10-17T18:49:02Z", + "createdDateTime": "2022-10-17T18:49:01Z", + "expirationDateTime": "2022-10-18T18:49:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ea195a71-941e-4512-bebb-259d9cc92911?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22ee343f-5325-49bc-9fbd-6bbf7f6d3762", + "Content-Length": "2457", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:49:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "ea195a71-941e-4512-bebb-259d9cc92911", + "lastUpdateDateTime": "2022-10-17T18:49:09Z", + "createdDateTime": "2022-10-17T18:49:01Z", + "expirationDateTime": "2022-10-18T18:49:01Z", "status": "succeeded", "errors": [], "tasks": { @@ -85,7 +121,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-17T17:35:25.933235Z", + "lastUpdateDateTime": "2022-10-17T18:49:09.5177117Z", "status": "succeeded", "results": { "statistics": { @@ -176,17 +212,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 32, @@ -244,7 +280,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks.json index 168122883163..e367c7731ef2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "834", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -80,41 +80,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "85344eb1-3932-4584-a9bb-7ccc6ed5cf3a", + "apim-request-id": "3e4a0d90-2b8f-4df3-81b5-a4acc621acd2", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:09:42 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1bbf9072-0ca9-43d5-a8cb-ee134b6d2ae1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:49:46 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/38e2ad49-fbc2-4d0f-a878-2c87b5e24f60?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "289" + "x-envoy-upstream-service-time": "279" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1bbf9072-0ca9-43d5-a8cb-ee134b6d2ae1?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/38e2ad49-fbc2-4d0f-a878-2c87b5e24f60?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5229cef6-e016-4f1a-ac0c-f0de37de04eb", - "Content-Length": "4666", + "apim-request-id": "c46fb4da-c20a-434c-a13e-305f65bc3f3f", + "Content-Length": "4674", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:47 GMT", + "Date": "Mon, 17 Oct 2022 18:49:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "376" + "x-envoy-upstream-service-time": "330" }, "ResponseBody": { - "jobId": "1bbf9072-0ca9-43d5-a8cb-ee134b6d2ae1", - "lastUpdatedDateTime": "2022-06-09T17:09:46Z", - "createdDateTime": "2022-06-09T17:09:42Z", - "expirationDateTime": "2022-06-10T17:09:42Z", + "jobId": "38e2ad49-fbc2-4d0f-a878-2c87b5e24f60", + "lastUpdateDateTime": "2022-10-17T18:49:49Z", + "createdDateTime": "2022-10-17T18:49:46Z", + "expirationDateTime": "2022-10-18T18:49:46Z", "status": "succeeded", "errors": [], "tasks": { @@ -126,7 +126,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:09:44.4041615Z", + "lastUpdateDateTime": "2022-10-17T18:49:48.8563353Z", "status": "succeeded", "results": { "statistics": { @@ -180,7 +180,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:09:44.622178Z", + "lastUpdateDateTime": "2022-10-17T18:49:49.0435434Z", "status": "succeeded", "results": { "statistics": { @@ -228,13 +228,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:09:44.4412934Z", + "lastUpdateDateTime": "2022-10-17T18:49:48.8817306Z", "status": "succeeded", "results": { "statistics": { @@ -292,7 +292,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:09:46.5447382Z", + "lastUpdateDateTime": "2022-10-17T18:49:48.7671104Z", "status": "succeeded", "results": { "statistics": { @@ -346,7 +346,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:09:45.7020067Z", + "lastUpdateDateTime": "2022-10-17T18:49:48.8455397Z", "status": "succeeded", "results": { "statistics": { @@ -391,17 +391,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -412,23 +412,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -445,16 +445,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -466,7 +466,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks_v3_1.json index ce2251ff30d4..1de86d72277f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_show_stats_and_model_version_multiple_tasks_v3_1.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "834", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -85,378 +85,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2a30ef26-0a9b-4259-a52c-5914e645f22c", - "Date": "Thu, 09 Jun 2022 17:09:31 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/32fb5922-3a42-4db8-9f33-2d13ca492d1e", + "apim-request-id": "0e5437c3-a657-45c2-9b12-a424cacf8806", + "Date": "Mon, 17 Oct 2022 18:49:40 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4a1cbfa2-8471-49cd-816b-e4c11f151470", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "352" + "x-envoy-upstream-service-time": "307" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/32fb5922-3a42-4db8-9f33-2d13ca492d1e?showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4a1cbfa2-8471-49cd-816b-e4c11f151470?showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05333955-3963-4bae-b4b4-d955d490ccc5", + "apim-request-id": "350300e4-a43e-463e-b85a-bd0f691b4726", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:36 GMT", + "Date": "Mon, 17 Oct 2022 18:49:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-envoy-upstream-service-time": "230" }, "ResponseBody": { - "jobId": "32fb5922-3a42-4db8-9f33-2d13ca492d1e", - "lastUpdateDateTime": "2022-06-09T17:09:34Z", - "createdDateTime": "2022-06-09T17:09:31Z", - "expirationDateTime": "2022-06-10T17:09:31Z", - "status": "running", - "errors": [], - "statistics": { - "documentsCount": 16, - "validDocumentsCount": 16, - "erroneousDocumentsCount": 0, - "transactionsCount": 16 - }, - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:09:33.4714681Z", - "taskName": "0", - "state": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:09:32.997652Z", - "taskName": "3", - "state": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:09:33.4854378Z", - "taskName": "2", - "state": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "redactedText": ":)", - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":(", - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":P", - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":D", - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:09:34.401853Z", - "taskName": "4", - "state": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "id": "56", - "sentiment": "positive", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, - "negative": 0.01 - }, - "sentences": [ - { - "sentiment": "positive", - "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, - "negative": 0.01 - }, - "offset": 0, - "length": 2, - "text": ":)" - } - ], - "warnings": [] - }, - { - "id": "0", - "sentiment": "negative", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 - }, - "sentences": [ - { - "sentiment": "negative", - "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 - }, - "offset": 0, - "length": 2, - "text": ":(" - } - ], - "warnings": [] - }, - { - "id": "19", - "sentiment": "neutral", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 - }, - "offset": 0, - "length": 2, - "text": ":P" - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "positive", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, - "negative": 0.01 - }, - "sentences": [ - { - "sentiment": "positive", - "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, - "negative": 0.01 - }, - "offset": 0, - "length": 2, - "text": ":D" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/32fb5922-3a42-4db8-9f33-2d13ca492d1e?showStats=True", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c1a62f17-1cc1-45f6-9352-6f9731e80480", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:09:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "263" - }, - "ResponseBody": { - "jobId": "32fb5922-3a42-4db8-9f33-2d13ca492d1e", - "lastUpdateDateTime": "2022-06-09T17:09:39Z", - "createdDateTime": "2022-06-09T17:09:31Z", - "expirationDateTime": "2022-06-10T17:09:31Z", + "jobId": "4a1cbfa2-8471-49cd-816b-e4c11f151470", + "lastUpdateDateTime": "2022-10-17T18:49:42Z", + "createdDateTime": "2022-10-17T18:49:40Z", + "expirationDateTime": "2022-10-18T18:49:40Z", "status": "succeeded", "errors": [], "statistics": { @@ -472,7 +135,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:09:33.4714681Z", + "lastUpdateDateTime": "2022-10-17T18:49:42.7395194Z", "taskName": "0", "state": "succeeded", "results": { @@ -527,7 +190,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:09:32.997652Z", + "lastUpdateDateTime": "2022-10-17T18:49:42.7868167Z", "taskName": "3", "state": "succeeded", "results": { @@ -582,7 +245,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:09:33.4854378Z", + "lastUpdateDateTime": "2022-10-17T18:49:42.8926173Z", "taskName": "2", "state": "succeeded", "results": { @@ -641,7 +304,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:09:39.0535583Z", + "lastUpdateDateTime": "2022-10-17T18:49:42.8258739Z", "taskName": "1", "state": "succeeded", "results": { @@ -690,13 +353,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:09:34.401853Z", + "lastUpdateDateTime": "2022-10-17T18:49:42.6478544Z", "taskName": "4", "state": "succeeded", "results": { @@ -742,17 +405,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -763,23 +426,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -796,16 +459,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -817,7 +480,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_single_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_single_label_classify.json index e07cfa2d2059..757fdb2297ed 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_single_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_single_label_classify.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,49 +36,49 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "daa0dfdb-74f9-41b6-97e5-7898293b9b11", + "apim-request-id": "b37e515e-86a3-4b05-96ae-1ded3fdad04c", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:12:04 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e7600431-d603-4978-a490-e951cf24b9dd?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:50:53 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/93b61aa0-9fec-40df-a530-807607dfd116?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "381" + "x-envoy-upstream-service-time": "245" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e7600431-d603-4978-a490-e951cf24b9dd?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/93b61aa0-9fec-40df-a530-807607dfd116?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7f1e92f-f383-4a3e-bcb9-32c7c3d91d10", - "Content-Length": "1107", + "apim-request-id": "23de3c5b-ee29-45af-a5cd-6828ab1a1fa5", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:12:09 GMT", + "Date": "Mon, 17 Oct 2022 18:50:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { - "jobId": "e7600431-d603-4978-a490-e951cf24b9dd", - "lastUpdatedDateTime": "2022-06-23T02:12:05Z", - "createdDateTime": "2022-06-23T02:12:04Z", - "expirationDateTime": "2022-06-24T02:12:04Z", + "jobId": "93b61aa0-9fec-40df-a530-807607dfd116", + "lastUpdateDateTime": "2022-10-17T18:50:54Z", + "createdDateTime": "2022-10-17T18:50:53Z", + "expirationDateTime": "2022-10-18T18:50:53Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:12:05.6220693Z", + "lastUpdateDateTime": "2022-10-17T18:50:54.1864437Z", "status": "succeeded", "results": { "statistics": { @@ -144,8 +144,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_too_many_documents.json index e377c675d6de..9d7a54ab4900 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze.pyTestAnalyzetest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "2022", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -184,13 +184,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "75e4dfd2-e361-4d9c-9985-d20218634081", + "apim-request-id": "77e72b3b-b803-43c5-bdc0-17f22649f18d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:10:34 GMT", + "Date": "Mon, 17 Oct 2022 18:50:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_key_phrase_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_key_phrase_task.json index e27c33699e47..53a81cfe8922 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_key_phrase_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_key_phrase_task.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -35,40 +35,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "12a08d0f-9998-4c95-889d-5d72e02260c4", + "apim-request-id": "b3b6ded9-03f5-44e7-b472-4698cbd2fe78", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:40:52 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e67f21d2-8ba8-4f25-a88c-81926eb46ff1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:03 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3e750afa-cbf5-44f2-9de9-b02510d4b259?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "243" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e67f21d2-8ba8-4f25-a88c-81926eb46ff1?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3e750afa-cbf5-44f2-9de9-b02510d4b259?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1addf6d3-a127-4ac0-91c7-6f14e01ca28c", - "Content-Length": "856", + "apim-request-id": "311b43d4-f759-4215-857c-525deb5af757", + "Content-Length": "855", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:40:57 GMT", + "Date": "Mon, 17 Oct 2022 18:52:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { - "jobId": "e67f21d2-8ba8-4f25-a88c-81926eb46ff1", - "lastUpdatedDateTime": "2022-06-09T17:40:54Z", - "createdDateTime": "2022-06-09T17:40:52Z", - "expirationDateTime": "2022-06-10T17:40:52Z", + "jobId": "3e750afa-cbf5-44f2-9de9-b02510d4b259", + "lastUpdateDateTime": "2022-10-17T18:52:05Z", + "createdDateTime": "2022-10-17T18:52:03Z", + "expirationDateTime": "2022-10-18T18:52:03Z", "status": "succeeded", "errors": [], "tasks": { @@ -80,7 +80,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:40:54.8558854Z", + "lastUpdateDateTime": "2022-10-17T18:52:05.2413029Z", "status": "succeeded", "results": { "statistics": { @@ -118,7 +118,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_sentiment_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_sentiment_task.json index 635bfd4a7bcf..c2d8f0684d44 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_sentiment_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_dict_sentiment_task.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "448", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b8dd8640-958e-4eb0-b7cd-ee4bf900a33b", + "apim-request-id": "787da237-dfe8-4e43-a921-f9793728e07a", "Content-Length": "0", - "Date": "Fri, 17 Jun 2022 17:40:24 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/188feb90-f244-4843-a52c-871f29d3ae8a?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:08 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/11f18b80-08ff-4d0d-8dd1-3faacd23bb96?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/188feb90-f244-4843-a52c-871f29d3ae8a?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/11f18b80-08ff-4d0d-8dd1-3faacd23bb96?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bab77137-2528-47b2-a2b4-4be52e58bcd8", - "Content-Length": "1944", + "apim-request-id": "eff36fd7-691e-4b22-bc16-0b915fcf0910", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 17 Jun 2022 17:40:28 GMT", + "Date": "Mon, 17 Oct 2022 18:52:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "jobId": "188feb90-f244-4843-a52c-871f29d3ae8a", - "lastUpdatedDateTime": "2022-06-17T17:40:26Z", - "createdDateTime": "2022-06-17T17:40:23Z", - "expirationDateTime": "2022-06-18T17:40:23Z", + "jobId": "11f18b80-08ff-4d0d-8dd1-3faacd23bb96", + "lastUpdateDateTime": "2022-10-17T18:52:11Z", + "createdDateTime": "2022-10-17T18:52:09Z", + "expirationDateTime": "2022-10-18T18:52:09Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-17T17:40:26.0444298Z", + "lastUpdateDateTime": "2022-10-17T18:52:11.0034253Z", "status": "succeeded", "results": { "statistics": { @@ -105,17 +105,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -132,17 +132,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -152,8 +152,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -170,15 +170,15 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -189,9 +189,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -202,7 +202,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_string_pii_entities_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_string_pii_entities_task.json index 740cab2e594f..3dd9b0d0eaeb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_string_pii_entities_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_string_pii_entities_task.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "451", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ed64c91a-9a39-4153-b4a0-3155adea4840", + "apim-request-id": "b79c7958-12d7-43df-9f93-b5500ee91d32", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:41:21 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c869536-a9ed-45ee-b19d-42db70db48f3?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:31 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6597d4d2-32c6-46d7-b141-7f93e4ea731b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8c869536-a9ed-45ee-b19d-42db70db48f3?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6597d4d2-32c6-46d7-b141-7f93e4ea731b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "100a5204-1679-4b1f-8db1-b00dea2b1b5b", - "Content-Length": "1496", + "apim-request-id": "2e5a2ab8-d058-40c8-a597-3969bc37f94d", + "Content-Length": "1495", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:26 GMT", + "Date": "Mon, 17 Oct 2022 18:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "8c869536-a9ed-45ee-b19d-42db70db48f3", - "lastUpdatedDateTime": "2022-06-09T17:41:23Z", - "createdDateTime": "2022-06-09T17:41:22Z", - "expirationDateTime": "2022-06-10T17:41:22Z", + "jobId": "6597d4d2-32c6-46d7-b141-7f93e4ea731b", + "lastUpdateDateTime": "2022-10-17T18:52:33Z", + "createdDateTime": "2022-10-17T18:52:31Z", + "expirationDateTime": "2022-10-18T18:52:31Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:41:23.9005228Z", + "lastUpdateDateTime": "2022-10-17T18:52:33.2927472Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_text_document_input_entities_task.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_text_document_input_entities_task.json index 8b17a69d7e14..389b4620245a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_text_document_input_entities_task.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_all_successful_passing_text_document_input_entities_task.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "494", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,75 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ad28eb89-a06d-4138-9159-8e913478f7af", + "apim-request-id": "53336579-aa54-43dc-9fb6-ba2682641af6", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:41:14 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/471e0739-f10e-4e68-8d9b-a810d03cd422?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:19 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8843ea2e-ea0a-4383-bf85-cda952193049?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "190" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/471e0739-f10e-4e68-8d9b-a810d03cd422?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8843ea2e-ea0a-4383-bf85-cda952193049?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efd6f557-e0d5-41e7-a9a9-2223717c111f", - "Content-Length": "2019", + "apim-request-id": "6bcfdb50-ee5f-4e14-a7d8-e11ba10ea7d7", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:21 GMT", + "Date": "Mon, 17 Oct 2022 18:52:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2056" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "471e0739-f10e-4e68-8d9b-a810d03cd422", - "lastUpdatedDateTime": "2022-06-09T17:41:17Z", - "createdDateTime": "2022-06-09T17:41:14Z", - "expirationDateTime": "2022-06-10T17:41:14Z", + "jobId": "8843ea2e-ea0a-4383-bf85-cda952193049", + "lastUpdateDateTime": "2022-10-17T18:52:21Z", + "createdDateTime": "2022-10-17T18:52:20Z", + "expirationDateTime": "2022-10-18T18:52:20Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8843ea2e-ea0a-4383-bf85-cda952193049?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6e7bc14e-940a-41bd-9b27-42e13485e51e", + "Content-Length": "2018", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:52:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "8843ea2e-ea0a-4383-bf85-cda952193049", + "lastUpdateDateTime": "2022-10-17T18:52:28Z", + "createdDateTime": "2022-10-17T18:52:20Z", + "expirationDateTime": "2022-10-18T18:52:20Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +122,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:41:17.3130514Z", + "lastUpdateDateTime": "2022-10-17T18:52:28.4763779Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_continuation_token.json index 4ad16c0661c3..f13dd1e3a7f5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_continuation_token.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "1171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -66,52 +66,171 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "86e3e7bd-051d-4dcd-80cf-8a84a769cbc7", + "apim-request-id": "3ebdb4d7-7d8e-4351-9fd5-30442fb40dcc", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:43:41 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/de9b3ed2-6768-442d-9a66-6b0554695f0d?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:54:13 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e9eda80-fd66-47a5-b844-40ed6830260b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "310" + "x-envoy-upstream-service-time": "230" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/de9b3ed2-6768-442d-9a66-6b0554695f0d?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e9eda80-fd66-47a5-b844-40ed6830260b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c44ddc3-7229-4ef0-a552-a4e26a6bd9c0", - "Content-Length": "3685", + "apim-request-id": "a7eea5be-d5db-4b00-938b-45fcc7466fd3", + "Content-Length": "5887", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:46 GMT", + "Date": "Mon, 17 Oct 2022 18:54:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "186" }, "ResponseBody": { - "jobId": "de9b3ed2-6768-442d-9a66-6b0554695f0d", - "lastUpdatedDateTime": "2022-06-09T17:43:43Z", - "createdDateTime": "2022-06-09T17:43:41Z", - "expirationDateTime": "2022-06-10T17:43:41Z", + "jobId": "6e9eda80-fd66-47a5-b844-40ed6830260b", + "lastUpdateDateTime": "2022-10-17T18:54:16Z", + "createdDateTime": "2022-10-17T18:54:13Z", + "expirationDateTime": "2022-10-18T18:54:13Z", "status": "running", "errors": [], "tasks": { - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 4, "items": [ + { + "kind": "PiiEntityRecognitionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:54:16.0334971Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 4, + "validDocumentsCount": 3, + "erroneousDocumentsCount": 1, + "transactionsCount": 3 + }, + "documents": [ + { + "redactedText": "A recent report by the ******************************** (***) found that the dramatic increase in oil and natural gas development on federal lands over the ************** has stretched the staff of the *** to a point that it has been unable to meet its environmental protection responsibilities.", + "id": "1", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.95 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.9 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.87 + } + ], + "warnings": [] + }, + { + "redactedText": "*************, *********************--Food Safety, ************************************** (****), Washington, D.C., discussed the physical activity component.", + "id": "2", + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "David Schmidt", + "category": "Person", + "offset": 0, + "length": 13, + "confidenceScore": 1.0 + }, + { + "text": "senior vice president", + "category": "PersonType", + "offset": 15, + "length": 21, + "confidenceScore": 0.71 + }, + { + "text": "International Food Information Council", + "category": "Organization", + "offset": 51, + "length": 38, + "confidenceScore": 0.96 + }, + { + "text": "IFIC", + "category": "Organization", + "offset": 91, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "redactedText": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "id": "4", + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid Document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + }, { "kind": "SentimentAnalysisLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:43:43.9513364Z", + "lastUpdateDateTime": "2022-10-17T18:54:15.7882409Z", "status": "succeeded", "results": { "statistics": { @@ -129,17 +248,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -156,16 +275,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "offset": 0, @@ -177,45 +296,45 @@ }, { "id": "4", - "sentiment": "positive", + "sentiment": "neutral", "statistics": { "charactersCount": 121, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.07, + "neutral": 0.86, + "negative": 0.07 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.96, - "negative": 0.01 + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, - "length": 55, - "text": "I need a reservation for an indoor restaurant in China." + "length": 56, + "text": "I need a reservation for an indoor restaurant in China. " }, { "sentiment": "neutral", "confidenceScores": { - "positive": 0.12, - "neutral": 0.78, - "negative": 0.1 + "positive": 0.02, + "neutral": 0.8, + "negative": 0.19 }, "offset": 56, - "length": 28, - "text": "Please don\u0027t stop the music." + "length": 29, + "text": "Please don\u0027t stop the music. " }, { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.2, + "neutral": 0.79, + "negative": 0.01 }, "offset": 85, "length": 36, @@ -238,13 +357,13 @@ } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:43:43.9048331Z", + "lastUpdateDateTime": "2022-10-17T18:54:16.0912273Z", "status": "succeeded", "results": { "statistics": { @@ -323,7 +442,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] @@ -331,29 +450,29 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/de9b3ed2-6768-442d-9a66-6b0554695f0d?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e9eda80-fd66-47a5-b844-40ed6830260b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92ea4f3b-c7a9-4b63-be5b-fdb2ba1176a0", - "Content-Length": "8464", + "apim-request-id": "fff2ed08-79e9-43bb-aa5b-b4fe29b3183d", + "Content-Length": "8463", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:51 GMT", + "Date": "Mon, 17 Oct 2022 18:54:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "244" + "x-envoy-upstream-service-time": "229" }, "ResponseBody": { - "jobId": "de9b3ed2-6768-442d-9a66-6b0554695f0d", - "lastUpdatedDateTime": "2022-06-09T17:43:50Z", - "createdDateTime": "2022-06-09T17:43:41Z", - "expirationDateTime": "2022-06-10T17:43:41Z", + "jobId": "6e9eda80-fd66-47a5-b844-40ed6830260b", + "lastUpdateDateTime": "2022-10-17T18:54:21Z", + "createdDateTime": "2022-10-17T18:54:13Z", + "expirationDateTime": "2022-10-18T18:54:13Z", "status": "succeeded", "errors": [], "tasks": { @@ -365,7 +484,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:50.2252657Z", + "lastUpdateDateTime": "2022-10-17T18:54:21.6162008Z", "status": "succeeded", "results": { "statistics": { @@ -557,7 +676,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:43:50.3010754Z", + "lastUpdateDateTime": "2022-10-17T18:54:16.0334971Z", "status": "succeeded", "results": { "statistics": { @@ -676,7 +795,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:43:43.9513364Z", + "lastUpdateDateTime": "2022-10-17T18:54:15.7882409Z", "status": "succeeded", "results": { "statistics": { @@ -694,17 +813,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -721,16 +840,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "offset": 0, @@ -742,45 +861,45 @@ }, { "id": "4", - "sentiment": "positive", + "sentiment": "neutral", "statistics": { "charactersCount": 121, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.07, + "neutral": 0.86, + "negative": 0.07 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.96, - "negative": 0.01 + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, - "length": 55, - "text": "I need a reservation for an indoor restaurant in China." + "length": 56, + "text": "I need a reservation for an indoor restaurant in China. " }, { "sentiment": "neutral", "confidenceScores": { - "positive": 0.12, - "neutral": 0.78, - "negative": 0.1 + "positive": 0.02, + "neutral": 0.8, + "negative": 0.19 }, "offset": 56, - "length": 28, - "text": "Please don\u0027t stop the music." + "length": 29, + "text": "Please don\u0027t stop the music. " }, { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.2, + "neutral": 0.79, + "negative": 0.01 }, "offset": 85, "length": 36, @@ -803,13 +922,13 @@ } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:43:43.9048331Z", + "lastUpdateDateTime": "2022-10-17T18:54:16.0912273Z", "status": "succeeded", "results": { "statistics": { @@ -888,7 +1007,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] @@ -896,29 +1015,29 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/de9b3ed2-6768-442d-9a66-6b0554695f0d?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e9eda80-fd66-47a5-b844-40ed6830260b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83a6e6a7-2520-451c-97c5-f2eac16f9551", - "Content-Length": "8464", + "apim-request-id": "e1b1d639-7c69-4252-96bb-97e6773a4ada", + "Content-Length": "8463", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:57 GMT", + "Date": "Mon, 17 Oct 2022 18:54:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "208" + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { - "jobId": "de9b3ed2-6768-442d-9a66-6b0554695f0d", - "lastUpdatedDateTime": "2022-06-09T17:43:50Z", - "createdDateTime": "2022-06-09T17:43:41Z", - "expirationDateTime": "2022-06-10T17:43:41Z", + "jobId": "6e9eda80-fd66-47a5-b844-40ed6830260b", + "lastUpdateDateTime": "2022-10-17T18:54:21Z", + "createdDateTime": "2022-10-17T18:54:13Z", + "expirationDateTime": "2022-10-18T18:54:13Z", "status": "succeeded", "errors": [], "tasks": { @@ -930,7 +1049,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:50.2252657Z", + "lastUpdateDateTime": "2022-10-17T18:54:21.6162008Z", "status": "succeeded", "results": { "statistics": { @@ -1122,7 +1241,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:43:50.3010754Z", + "lastUpdateDateTime": "2022-10-17T18:54:16.0334971Z", "status": "succeeded", "results": { "statistics": { @@ -1241,7 +1360,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:43:43.9513364Z", + "lastUpdateDateTime": "2022-10-17T18:54:15.7882409Z", "status": "succeeded", "results": { "statistics": { @@ -1259,17 +1378,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.23, - "neutral": 0.61, - "negative": 0.16 + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -1286,16 +1405,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, + "positive": 0.01, + "neutral": 0.99, "negative": 0.0 }, "offset": 0, @@ -1307,45 +1426,45 @@ }, { "id": "4", - "sentiment": "positive", + "sentiment": "neutral", "statistics": { "charactersCount": 121, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.07, + "neutral": 0.86, + "negative": 0.07 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.96, - "negative": 0.01 + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, - "length": 55, - "text": "I need a reservation for an indoor restaurant in China." + "length": 56, + "text": "I need a reservation for an indoor restaurant in China. " }, { "sentiment": "neutral", "confidenceScores": { - "positive": 0.12, - "neutral": 0.78, - "negative": 0.1 + "positive": 0.02, + "neutral": 0.8, + "negative": 0.19 }, "offset": 56, - "length": 28, - "text": "Please don\u0027t stop the music." + "length": 29, + "text": "Please don\u0027t stop the music. " }, { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.57, - "neutral": 0.41, - "negative": 0.02 + "positive": 0.2, + "neutral": 0.79, + "negative": 0.01 }, "offset": 85, "length": 36, @@ -1368,13 +1487,13 @@ } } ], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:43:43.9048331Z", + "lastUpdateDateTime": "2022-10-17T18:54:16.0912273Z", "status": "succeeded", "results": { "statistics": { @@ -1453,7 +1572,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_works_with_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_works_with_v3_1.json index 9bd0b032c1ab..2a8d6a1136f6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_works_with_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_analyze_works_with_v3_1.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "701", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -78,210 +78,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7fbca5f8-6781-47bf-a580-d0f013729278", - "Date": "Thu, 09 Jun 2022 17:43:58 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/bba18cea-96e3-44f4-b4cb-66c7a41d5f6d", + "apim-request-id": "0e11b801-3636-46e0-99f0-ef1399bd924f", + "Date": "Mon, 17 Oct 2022 18:55:01 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b70f74f6-4f7a-47de-a68b-61ba350b1fde", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "289" + "x-envoy-upstream-service-time": "336" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/bba18cea-96e3-44f4-b4cb-66c7a41d5f6d", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b70f74f6-4f7a-47de-a68b-61ba350b1fde", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "508e574d-2d6c-4f37-b636-235800453af7", + "apim-request-id": "12d1b70f-8b0d-49f2-8add-5cfddb766680", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:44:02 GMT", + "Date": "Mon, 17 Oct 2022 18:55:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "300" + "x-envoy-upstream-service-time": "301" }, "ResponseBody": { - "jobId": "bba18cea-96e3-44f4-b4cb-66c7a41d5f6d", - "lastUpdateDateTime": "2022-06-09T17:44:02Z", - "createdDateTime": "2022-06-09T17:43:57Z", - "expirationDateTime": "2022-06-10T17:43:57Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:44:02.3001724Z", - "taskName": "0", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "entities": [], - "warnings": [] - }, - { - "id": "0", - "entities": [], - "warnings": [] - }, - { - "id": "19", - "entities": [], - "warnings": [] - }, - { - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:44:00.3732338Z", - "taskName": "3", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "entities": [], - "warnings": [] - }, - { - "id": "0", - "entities": [], - "warnings": [] - }, - { - "id": "19", - "entities": [], - "warnings": [] - }, - { - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:44:01.4136999Z", - "taskName": "2", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": ":)", - "id": "56", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":(", - "id": "0", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":P", - "id": "19", - "entities": [], - "warnings": [] - }, - { - "redactedText": ":D", - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2022-06-09T17:43:59.9901518Z", - "taskName": "1", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "keyPhrases": [], - "warnings": [] - }, - { - "id": "0", - "keyPhrases": [], - "warnings": [] - }, - { - "id": "19", - "keyPhrases": [], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/bba18cea-96e3-44f4-b4cb-66c7a41d5f6d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "49f0e1aa-114a-4de3-9000-0df7faa23fdc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:44:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "260" - }, - "ResponseBody": { - "jobId": "bba18cea-96e3-44f4-b4cb-66c7a41d5f6d", - "lastUpdateDateTime": "2022-06-09T17:44:06Z", - "createdDateTime": "2022-06-09T17:43:57Z", - "expirationDateTime": "2022-06-10T17:43:57Z", + "jobId": "b70f74f6-4f7a-47de-a68b-61ba350b1fde", + "lastUpdateDateTime": "2022-10-17T18:55:03Z", + "createdDateTime": "2022-10-17T18:55:01Z", + "expirationDateTime": "2022-10-18T18:55:01Z", "status": "succeeded", "errors": [], "tasks": { @@ -291,7 +121,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:44:02.3001724Z", + "lastUpdateDateTime": "2022-10-17T18:55:03.7588671Z", "taskName": "0", "state": "succeeded", "results": { @@ -324,7 +154,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:44:00.3732338Z", + "lastUpdateDateTime": "2022-10-17T18:55:03.6535289Z", "taskName": "3", "state": "succeeded", "results": { @@ -357,7 +187,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:44:01.4136999Z", + "lastUpdateDateTime": "2022-10-17T18:55:03.794183Z", "taskName": "2", "state": "succeeded", "results": { @@ -394,7 +224,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:43:59.9901518Z", + "lastUpdateDateTime": "2022-10-17T18:55:03.4779123Z", "taskName": "1", "state": "succeeded", "results": { @@ -421,13 +251,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:44:06.2516358Z", + "lastUpdateDateTime": "2022-10-17T18:55:03.6635812Z", "taskName": "4", "state": "succeeded", "results": { @@ -459,17 +289,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -480,19 +310,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -505,16 +335,16 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -526,7 +356,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document.json new file mode 100644 index 000000000000..ee49d35e0fce --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document.json @@ -0,0 +1,434 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "723", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "auto" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "auto" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "EntityRecognition", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "1", + "kind": "KeyPhraseExtraction", + "parameters": {} + }, + { + "taskName": "2", + "kind": "PiiEntityRecognition", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "3", + "kind": "SentimentAnalysis", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "4", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "85b8405a-dec5-4457-84aa-75d63ee84dad", + "Content-Length": "0", + "Date": "Fri, 28 Oct 2022 18:27:22 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4efe9b7b-dee1-4180-9c69-95a94dca4468?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "429", + "x-ms-region": "UK South" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4efe9b7b-dee1-4180-9c69-95a94dca4468?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7e8e333e-ad72-4fda-bdea-8d2ee867a2aa", + "Content-Length": "4730", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 28 Oct 2022 18:27:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "jobId": "4efe9b7b-dee1-4180-9c69-95a94dca4468", + "lastUpdateDateTime": "2022-10-28T18:27:27Z", + "createdDateTime": "2022-10-28T18:27:22Z", + "expirationDateTime": "2022-10-29T18:27:22Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-28T18:27:27.0788125Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-28T18:27:25.6463109Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "PiiEntityRecognitionLROResults", + "taskName": "2", + "lastUpdateDateTime": "2022-10-28T18:27:26.4237181Z", + "status": "succeeded", + "results": { + "documents": [ + { + "redactedText": "********* was founded by ********** and **********", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.96 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.99 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "redactedText": "********* fue fundado por ********** y **********", + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.96 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 0.99 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "3", + "lastUpdateDateTime": "2022-10-28T18:27:25.7620517Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 50, + "text": "Microsoft was founded by Bill Gates and Paul Allen" + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.05, + "neutral": 0.94, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.05, + "neutral": 0.94, + "negative": 0.0 + }, + "offset": 0, + "length": 49, + "text": "Microsoft fue fundado por Bill Gates y Paul Allen" + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-28T18:27:24.3708453Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 50 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "sentences": [ + { + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 49 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document_custom.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document_custom.json new file mode 100644 index 000000000000..876bb1f53041 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_autodetect_lang_document_custom.json @@ -0,0 +1,281 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "811", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "auto" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "auto" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "CustomEntityRecognition", + "parameters": { + "projectName": "custom_entities_project_name", + "deploymentName": "custom_entities_project_name", + "stringIndexType": "UnicodeCodePoint" + } + }, + { + "taskName": "1", + "kind": "CustomSingleLabelClassification", + "parameters": { + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" + } + }, + { + "taskName": "2", + "kind": "CustomMultiLabelClassification", + "parameters": { + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "cf9abc96-7192-4dd7-bc64-240f2c93c55b", + "Content-Length": "0", + "Date": "Fri, 28 Oct 2022 18:27:48 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/201405c6-3333-4ec6-9440-e9127efd9f43?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3318", + "x-ms-region": "West US 2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/201405c6-3333-4ec6-9440-e9127efd9f43?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "820ee27d-1024-4805-8916-6e747c2abc1c", + "Content-Length": "2791", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 28 Oct 2022 18:27:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4341", + "x-ms-region": "West US 2" + }, + "ResponseBody": { + "jobId": "201405c6-3333-4ec6-9440-e9127efd9f43", + "lastUpdateDateTime": "2022-10-28T18:27:50Z", + "createdDateTime": "2022-10-28T18:27:46Z", + "expirationDateTime": "2022-10-29T18:27:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "items": [ + { + "kind": "CustomEntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-28T18:27:50.8830959Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.06 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 25, + "length": 10, + "confidenceScore": 0.59 + }, + { + "text": "and", + "category": "party_size_description", + "offset": 36, + "length": 3, + "confidenceScore": 0.25 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 40, + "length": 10, + "confidenceScore": 0.81 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.06 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 26, + "length": 10, + "confidenceScore": 0.54 + }, + { + "text": "y", + "category": "party_size_description", + "offset": 37, + "length": 1, + "confidenceScore": 0.34 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 39, + "length": 10, + "confidenceScore": 0.79 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "custom_entities_project_name", + "deploymentName": "custom_entities_project_name" + } + }, + { + "kind": "CustomSingleLabelClassificationLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-28T18:27:50.3834191Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "class": [ + { + "category": "PlayMusic", + "confidenceScore": 0.39 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "class": [ + { + "category": "RateBook", + "confidenceScore": 0.46 + } + ], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" + } + }, + { + "kind": "CustomMultiLabelClassificationLROResults", + "taskName": "2", + "lastUpdateDateTime": "2022-10-28T18:27:50.862659Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "class": [], + "warnings": [], + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.94 + }, + "isLanguageDefaulted": false + }, + { + "id": "2", + "class": [], + "warnings": [], + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.97 + }, + "isLanguageDefaulted": false + } + ], + "errors": [], + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_credentials.json index a636d1b174c9..a65cf8b43ce8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "594", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -58,10 +58,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "d4d1cdd5-961b-4817-a4e4-e63c339ebfdd", + "apim-request-id": "11e76347-7f3a-45f1-8718-932c12d7eb9e", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Thu, 09 Jun 2022 17:41:27 GMT" + "Date": "Mon, 17 Oct 2022 18:52:36 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_all_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_all_tasks.json index 65f46abbdfbe..c8227e7130ab 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_all_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_all_tasks.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "723", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -64,9 +64,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "77d4f21e-acd1-48a9-95f1-bd9c656921ea", + "apim-request-id": "49870eb4-b879-440d-8f06-0a846d0f74e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:02 GMT", + "Date": "Mon, 17 Oct 2022 18:52:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -75,10 +75,20 @@ "ResponseBody": { "error": { "code": "InvalidRequest", - "message": "Invalid parameter in request", + "details": [ + { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "InvalidParameterValue", + "message": "Job task parameter value \u0027bad\u0027 is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest, 2020-07-01, 2021-01-15." + } + } + ], + "message": "Invalid Request.", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value bad is not supported for model-version parameter for job task type NamedEntityRecognition. Supported values latest,2020-04-01,2021-01-15,2021-06-01." + "message": "Job task: \u0027PersonallyIdentifiableInformation-2\u0027 failed with validation errors: [\u0027Invalid parameter in request\u0027]" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_multiple_tasks.json index e8331e9afcd2..27cee19dbada 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_model_version_error_multiple_tasks.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "721", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -64,21 +64,31 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "bb754fc8-77bb-4c38-b13b-16bc32b7da4c", + "apim-request-id": "f34ac711-527c-445f-9681-5190a8d92e6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:01 GMT", + "Date": "Mon, 17 Oct 2022 18:52:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { "code": "InvalidRequest", - "message": "Invalid parameter in request", + "details": [ + { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "InvalidParameterValue", + "message": "Job task parameter value \u0027bad\u0027 is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest, 2020-07-01, 2021-01-15." + } + } + ], + "message": "Invalid Request.", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value bad is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01,2021-05-01." + "message": "Job task: \u0027PersonallyIdentifiableInformation-2\u0027 failed with validation errors: [\u0027Invalid parameter in request\u0027]" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_request_on_empty_document.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_request_on_empty_document.json index ca78d0045ab1..d9b2b911a91b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_request_on_empty_document.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_bad_request_on_empty_document.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "156", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "811b35b9-e79f-4ed4-8e68-e656cb5ce9ad", + "apim-request-id": "e288ca82-6cde-4dc8-9e82-aa41fa66e313", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:26 GMT", + "Date": "Mon, 17 Oct 2022 18:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel.json index 37767ed8615f..816145c9896b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "7294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -153,35 +153,62 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "85a3feec-ea48-4c93-9a05-c3df272449a5", + "apim-request-id": "fc4b642f-e19e-4d25-b83f-3f26b6ee03c1", "Content-Length": "0", - "Date": "Mon, 18 Jul 2022 23:50:13 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5a8d14bf-a756-4f43-a4be-d7dee416ec80?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:13 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/98a79577-4470-448e-a6b8-06db62822a96?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "684" + "x-envoy-upstream-service-time": "522" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5a8d14bf-a756-4f43-a4be-d7dee416ec80:cancel?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/98a79577-4470-448e-a6b8-06db62822a96:cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "e4bd3347-2aab-47a8-979b-ed0db94c4b5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:55:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "message": "Could not cancel job with id 98a79577-4470-448e-a6b8-06db62822a96" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/98a79577-4470-448e-a6b8-06db62822a96:cancel?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "0", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2d162360-2a78-4e39-afb3-b7450cb54acf", + "apim-request-id": "85f19436-ef2f-4521-bd3d-2a03ace957e0", "Content-Length": "0", - "Date": "Mon, 18 Jul 2022 23:50:13 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5a8d14bf-a756-4f43-a4be-d7dee416ec80?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:13 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/98a79577-4470-448e-a6b8-06db62822a96?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_terminal_state.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_terminal_state.json index bd80375b1409..fbbc65f8a542 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_terminal_state.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_terminal_state.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "7294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -153,40 +153,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f4580510-ac3b-4042-a748-f1905ebd18ac", + "apim-request-id": "92af834c-a0e5-4983-8bb6-953d1151ef4d", "Content-Length": "0", - "Date": "Mon, 18 Jul 2022 23:50:21 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/667af434-e6e8-47eb-9ad9-17782a4ee287?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:15 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a6037854-5bef-4fc6-a8c1-e83cc9254f03?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "618" + "x-envoy-upstream-service-time": "624" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/667af434-e6e8-47eb-9ad9-17782a4ee287?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a6037854-5bef-4fc6-a8c1-e83cc9254f03?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14e91552-154a-4086-b935-7976cac184af", - "Content-Length": "40782", + "apim-request-id": "9b460d06-2b76-4be6-aa14-131c993758d2", + "Content-Length": "34397", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 18 Jul 2022 23:50:26 GMT", + "Date": "Mon, 17 Oct 2022 18:55:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "703" + "x-envoy-upstream-service-time": "625" }, "ResponseBody": { - "jobId": "667af434-e6e8-47eb-9ad9-17782a4ee287", - "lastUpdatedDateTime": "2022-07-18T23:50:26Z", - "createdDateTime": "2022-07-18T23:50:20Z", - "expirationDateTime": "2022-07-19T23:50:20Z", + "jobId": "a6037854-5bef-4fc6-a8c1-e83cc9254f03", + "lastUpdateDateTime": "2022-10-17T18:55:20Z", + "createdDateTime": "2022-10-17T18:55:14Z", + "expirationDateTime": "2022-10-18T18:55:14Z", "status": "running", "errors": [], "tasks": { @@ -196,9 +196,9 @@ "total": 5, "items": [ { - "kind": "EntityRecognitionLROResults", - "taskName": "0", - "lastUpdateDateTime": "2022-07-18T23:50:26.177152Z", + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:55:19.5461667Z", "status": "succeeded", "results": { "statistics": { @@ -210,1664 +210,3882 @@ "documents": [ { "id": "0", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "1", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "2", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "3", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "4", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "5", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "6", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "7", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "8", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "9", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "10", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "11", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "12", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "13", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "14", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "15", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "16", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], "warnings": [] }, { "id": "17", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "EntityLinkingLROResults", + "taskName": "3", + "lastUpdateDateTime": "2022-10-17T18:55:20.1078916Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" } ], "warnings": [] }, { - "id": "18", + "id": "1", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" } ], "warnings": [] }, { - "id": "19", + "id": "2", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "entities": [ { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "5", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "6", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" }, { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" } ], "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "KeyPhraseExtractionLROResults", - "taskName": "1", - "lastUpdateDateTime": "2022-07-18T23:50:26.2010469Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 20, - "validDocumentsCount": 20, - "erroneousDocumentsCount": 0, - "transactionsCount": 20 - }, - "documents": [ + }, + { + "id": "7", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "8", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "9", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "10", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "11", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "12", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "13", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "14", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "15", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "16", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "17", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "18", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "19", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-17T18:55:18.685593Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "7", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "8", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "9", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "10", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "11", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "12", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "13", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "14", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "15", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "16", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "17", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "18", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + }, + { + "id": "19", + "sentiment": "neutral", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.59, + "negative": 0.41 + }, + "offset": 0, + "length": 295, + "text": "A recent report by the Government Accountability Office (GAO) found that the dramatic increase in oil and natural gas development on federal lands over the past six years has stretched the staff of the BLM to a point that it has been unable to meet its environmental protection responsibilities." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a6037854-5bef-4fc6-a8c1-e83cc9254f03?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9adb6090-5fde-4519-84ed-faa66fbc8b04", + "Content-Length": "55951", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:55:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "953" + }, + "ResponseBody": { + "jobId": "a6037854-5bef-4fc6-a8c1-e83cc9254f03", + "lastUpdateDateTime": "2022-10-17T18:55:23Z", + "createdDateTime": "2022-10-17T18:55:14Z", + "expirationDateTime": "2022-10-18T18:55:14Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-17T18:55:23.9252051Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "1", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "2", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "3", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "4", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "5", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "6", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "7", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "8", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "9", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "10", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "11", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "12", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "13", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "14", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "15", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "16", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "17", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "18", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + }, + { + "id": "19", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "cent", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 4, + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "Government Accountability Office", + "category": "Organization", + "offset": 23, + "length": 32, + "confidenceScore": 0.99 + }, + { + "text": "GAO", + "category": "Organization", + "offset": 57, + "length": 3, + "confidenceScore": 0.94 + }, + { + "text": "oil", + "category": "Product", + "offset": 98, + "length": 3, + "confidenceScore": 0.67 + }, + { + "text": "natural", + "category": "Product", + "offset": 106, + "length": 7, + "confidenceScore": 0.68 + }, + { + "text": "gas", + "category": "Skill", + "offset": 114, + "length": 3, + "confidenceScore": 0.57 + }, + { + "text": "development", + "category": "Skill", + "offset": 118, + "length": 11, + "confidenceScore": 0.48 + }, + { + "text": "past six years", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.8 + }, + { + "text": "BLM", + "category": "Organization", + "offset": 202, + "length": 3, + "confidenceScore": 0.96 + }, + { + "text": "environmental protection", + "category": "Skill", + "offset": 253, + "length": 24, + "confidenceScore": 0.79 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:55:19.5461667Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, { - "id": "0", + "id": "14", "keyPhrases": [ "Government Accountability Office", "natural gas development", @@ -1889,7 +4107,7 @@ "warnings": [] }, { - "id": "1", + "id": "15", "keyPhrases": [ "Government Accountability Office", "natural gas development", @@ -1911,7 +4129,7 @@ "warnings": [] }, { - "id": "2", + "id": "16", "keyPhrases": [ "Government Accountability Office", "natural gas development", @@ -1933,7 +4151,7 @@ "warnings": [] }, { - "id": "3", + "id": "17", "keyPhrases": [ "Government Accountability Office", "natural gas development", @@ -1955,7 +4173,29 @@ "warnings": [] }, { - "id": "4", + "id": "18", + "keyPhrases": [ + "Government Accountability Office", + "natural gas development", + "past six years", + "environmental protection responsibilities", + "recent report", + "dramatic increase", + "federal lands", + "GAO", + "oil", + "staff", + "BLM", + "point" + ], + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "19", "keyPhrases": [ "Government Accountability Office", "natural gas development", @@ -1975,346 +4215,874 @@ "transactionsCount": 1 }, "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "EntityLinkingLROResults", + "taskName": "3", + "lastUpdateDateTime": "2022-10-17T18:55:20.1078916Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], + "warnings": [] }, { "id": "5", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "6", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "7", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "8", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "9", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } ], - "statistics": { - "charactersCount": 295, - "transactionsCount": 1 - }, "warnings": [] }, { "id": "10", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "11", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "12", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "13", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "14", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" + "statistics": { + "charactersCount": 295, + "transactionsCount": 1 + }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } ], - "statistics": { - "charactersCount": 295, - "transactionsCount": 1 - }, "warnings": [] }, { "id": "15", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "16", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "17", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "18", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] }, { "id": "19", - "keyPhrases": [ - "Government Accountability Office", - "natural gas development", - "past six years", - "environmental protection responsibilities", - "recent report", - "dramatic increase", - "federal lands", - "GAO", - "oil", - "staff", - "BLM", - "point" - ], "statistics": { "charactersCount": 295, "transactionsCount": 1 }, + "entities": [ + { + "bingId": "e6fa81f3-561c-8207-0ca8-5b0163484c4d", + "name": "Government Accountability Office", + "matches": [ + { + "text": "Government Accountability Office (GAO", + "offset": 23, + "length": 37, + "confidenceScore": 0.82 + } + ], + "language": "en", + "id": "Government Accountability Office", + "url": "https://en.wikipedia.org/wiki/Government_Accountability_Office", + "dataSource": "Wikipedia" + }, + { + "bingId": "936aa335-4726-b0db-03a5-2f3755b776e6", + "name": "Bureau of Land Management", + "matches": [ + { + "text": "BLM", + "offset": 202, + "length": 3, + "confidenceScore": 0.5 + } + ], + "language": "en", + "id": "Bureau of Land Management", + "url": "https://en.wikipedia.org/wiki/Bureau_of_Land_Management", + "dataSource": "Wikipedia" + } + ], "warnings": [] } ], "errors": [], - "modelVersion": "2022-07-01" + "modelVersion": "2021-06-01" } }, { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-07-18T23:50:25.7119847Z", + "lastUpdateDateTime": "2022-10-17T18:55:18.685593Z", "status": "succeeded", "results": { "statistics": { @@ -2326,23 +5094,23 @@ "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2353,23 +5121,23 @@ }, { "id": "1", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2380,23 +5148,23 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2407,23 +5175,23 @@ }, { "id": "3", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2434,23 +5202,23 @@ }, { "id": "4", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2461,23 +5229,23 @@ }, { "id": "5", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2488,23 +5256,23 @@ }, { "id": "6", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2515,23 +5283,23 @@ }, { "id": "7", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2542,23 +5310,23 @@ }, { "id": "8", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2569,23 +5337,23 @@ }, { "id": "9", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2596,23 +5364,23 @@ }, { "id": "10", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2623,23 +5391,23 @@ }, { "id": "11", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2650,23 +5418,23 @@ }, { "id": "12", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2677,23 +5445,23 @@ }, { "id": "13", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2704,23 +5472,23 @@ }, { "id": "14", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2731,23 +5499,23 @@ }, { "id": "15", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2758,23 +5526,23 @@ }, { "id": "16", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2785,23 +5553,23 @@ }, { "id": "17", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2812,23 +5580,23 @@ }, { "id": "18", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2839,23 +5607,23 @@ }, { "id": "19", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -2866,7 +5634,7 @@ } ], "errors": [], - "modelVersion": "2022-06-01" + "modelVersion": "2022-10-01" } } ] @@ -2874,29 +5642,29 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/667af434-e6e8-47eb-9ad9-17782a4ee287?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a6037854-5bef-4fc6-a8c1-e83cc9254f03?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9952a77-e393-47c3-a151-1050eae0f46c", - "Content-Length": "72751", + "apim-request-id": "3d5e0da6-081a-4dea-8a8d-2d4726c407ba", + "Content-Length": "72709", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 18 Jul 2022 23:50:33 GMT", + "Date": "Mon, 17 Oct 2022 18:55:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1021" + "x-envoy-upstream-service-time": "1051" }, "ResponseBody": { - "jobId": "667af434-e6e8-47eb-9ad9-17782a4ee287", - "lastUpdatedDateTime": "2022-07-18T23:50:26Z", - "createdDateTime": "2022-07-18T23:50:20Z", - "expirationDateTime": "2022-07-19T23:50:20Z", + "jobId": "a6037854-5bef-4fc6-a8c1-e83cc9254f03", + "lastUpdateDateTime": "2022-10-17T18:55:30Z", + "createdDateTime": "2022-10-17T18:55:14Z", + "expirationDateTime": "2022-10-18T18:55:14Z", "status": "succeeded", "errors": [], "tasks": { @@ -2908,7 +5676,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-07-18T23:50:26.177152Z", + "lastUpdateDateTime": "2022-10-17T18:55:23.9252051Z", "status": "succeeded", "results": { "statistics": { @@ -4566,7 +7334,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-07-18T23:50:26.2010469Z", + "lastUpdateDateTime": "2022-10-17T18:55:19.5461667Z", "status": "succeeded", "results": { "statistics": { @@ -5018,13 +7786,13 @@ } ], "errors": [], - "modelVersion": "2022-07-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-07-18T23:50:26.7109595Z", + "lastUpdateDateTime": "2022-10-17T18:55:30.241619Z", "status": "succeeded", "results": { "statistics": { @@ -5842,7 +8610,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-07-18T23:50:26.9641886Z", + "lastUpdateDateTime": "2022-10-17T18:55:20.1078916Z", "status": "succeeded", "results": { "statistics": { @@ -6700,7 +9468,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-07-18T23:50:25.7119847Z", + "lastUpdateDateTime": "2022-10-17T18:55:18.685593Z", "status": "succeeded", "results": { "statistics": { @@ -6712,23 +9480,23 @@ "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6739,23 +9507,23 @@ }, { "id": "1", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6766,23 +9534,23 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6793,23 +9561,23 @@ }, { "id": "3", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6820,23 +9588,23 @@ }, { "id": "4", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6847,23 +9615,23 @@ }, { "id": "5", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6874,23 +9642,23 @@ }, { "id": "6", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6901,23 +9669,23 @@ }, { "id": "7", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6928,23 +9696,23 @@ }, { "id": "8", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6955,23 +9723,23 @@ }, { "id": "9", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -6982,23 +9750,23 @@ }, { "id": "10", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7009,23 +9777,23 @@ }, { "id": "11", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7036,23 +9804,23 @@ }, { "id": "12", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7063,23 +9831,23 @@ }, { "id": "13", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7090,23 +9858,23 @@ }, { "id": "14", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7117,23 +9885,23 @@ }, { "id": "15", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7144,23 +9912,23 @@ }, { "id": "16", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7171,23 +9939,23 @@ }, { "id": "17", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7198,23 +9966,23 @@ }, { "id": "18", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7225,23 +9993,23 @@ }, { "id": "19", - "sentiment": "negative", + "sentiment": "neutral", "statistics": { "charactersCount": 295, "transactionsCount": 1 }, "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.59, + "negative": 0.41 }, "offset": 0, "length": 295, @@ -7252,7 +10020,7 @@ } ], "errors": [], - "modelVersion": "2022-06-01" + "modelVersion": "2022-10-01" } } ] @@ -7260,29 +10028,29 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/667af434-e6e8-47eb-9ad9-17782a4ee287:cancel?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a6037854-5bef-4fc6-a8c1-e83cc9254f03:cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9b906f2a-bbb8-4f44-a899-b24cdf297d13", + "apim-request-id": "b9aa1bdd-515c-4860-8912-ffd6bac1da33", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 18 Jul 2022 23:50:33 GMT", + "Date": "Mon, 17 Oct 2022 18:55:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "error": { "code": "InvalidRequest", - "message": "Failed to cancel job with job id 667af434-e6e8-47eb-9ad9-17782a4ee287 as its already completed." + "message": "Failed to cancel job with job id a6037854-5bef-4fc6-a8c1-e83cc9254f03 as its already completed." } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_v3_1.json index b54aeb819c6c..879b210f43df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_cancel_fail_v3_1.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "7289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -158,13 +158,13 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3602bad6-3742-4cbb-bcc4-debef76325d6", - "Date": "Mon, 18 Jul 2022 23:50:37 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/35c629f4-0dac-4869-9c92-c41282c14ab9", + "apim-request-id": "f4044ee2-b61a-4e7b-8e3a-e3617286b36f", + "Date": "Mon, 17 Oct 2022 18:55:33 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/5bddcef4-26d7-4c11-bea8-840ab1edbba3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "655" + "x-envoy-upstream-service-time": "739" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_custom_partial_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_custom_partial_error.json index 8f75a4506d4e..3057748d58c8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_custom_partial_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_custom_partial_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "1015", + "Content-Length": "1003", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -30,16 +30,16 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "taskName": "1", "kind": "CustomMultiLabelClassification", "parameters": { - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { @@ -55,40 +55,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "761b0e43-83cf-483b-a221-63c30f82ad51", + "apim-request-id": "1686d891-30cf-4089-a145-3365d5a45845", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:14:18 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e1fd1a6-f7f2-440d-aba2-d57a93c45173?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:54:07 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d9a89d5b-cf96-4db8-a5d6-1f26b7805ed9?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-envoy-upstream-service-time": "259" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6e1fd1a6-f7f2-440d-aba2-d57a93c45173?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d9a89d5b-cf96-4db8-a5d6-1f26b7805ed9?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbc7e582-e063-48d4-ba0f-e2dab6e548c9", - "Content-Length": "3705", + "apim-request-id": "92ddbf56-6691-45f3-ab71-67f22468d92a", + "Content-Length": "3692", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:14:23 GMT", + "Date": "Mon, 17 Oct 2022 18:54:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { - "jobId": "6e1fd1a6-f7f2-440d-aba2-d57a93c45173", - "lastUpdatedDateTime": "2022-06-23T02:14:20Z", - "createdDateTime": "2022-06-23T02:14:18Z", - "expirationDateTime": "2022-06-24T02:14:18Z", + "jobId": "d9a89d5b-cf96-4db8-a5d6-1f26b7805ed9", + "lastUpdateDateTime": "2022-10-17T18:54:09Z", + "createdDateTime": "2022-10-17T18:54:08Z", + "expirationDateTime": "2022-10-18T18:54:08Z", "status": "succeeded", "errors": [], "tasks": { @@ -100,7 +100,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:14:19.3208436Z", + "lastUpdateDateTime": "2022-10-17T18:54:09.0033123Z", "status": "succeeded", "results": { "statistics": { @@ -138,14 +138,14 @@ } } ], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-23T02:14:19.4132374Z", + "lastUpdateDateTime": "2022-10-17T18:54:08.6978075Z", "status": "succeeded", "results": { "statistics": { @@ -178,14 +178,14 @@ } } ], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { "kind": "CustomEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-23T02:14:20.0882905Z", + "lastUpdateDateTime": "2022-10-17T18:54:08.6704658Z", "status": "succeeded", "results": { "statistics": { @@ -209,6 +209,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -223,20 +230,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -251,13 +244,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -265,6 +251,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -279,13 +279,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -293,13 +286,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -313,6 +299,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_disable_service_logs.json index 881972f671cb..d6723a22c27e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_disable_service_logs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "1481", + "Content-Length": "1469", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -65,8 +65,8 @@ "kind": "CustomSingleLabelClassification", "parameters": { "loggingOptOut": true, - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { @@ -74,8 +74,8 @@ "kind": "CustomMultiLabelClassification", "parameters": { "loggingOptOut": true, - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { @@ -100,183 +100,52 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "86640225-1fef-4275-a08f-45a8571634ba", + "apim-request-id": "2ac37f14-c9c1-40b7-9cd3-6661a9f96046", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:42:34 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca3a7349-ba48-4644-8268-5fcd66264bd7?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:22 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c06bc67b-8b7e-4f98-89e8-17900d61ba26?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "718" + "x-envoy-upstream-service-time": "531" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca3a7349-ba48-4644-8268-5fcd66264bd7?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c06bc67b-8b7e-4f98-89e8-17900d61ba26?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e2c1447-77f5-4f8f-bc0f-d687e3356eb1", - "Content-Length": "1517", + "apim-request-id": "0776ad28-7690-4dcf-a8c1-d20785bb8d67", + "Content-Length": "3117", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:39 GMT", + "Date": "Mon, 17 Oct 2022 18:53:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { - "jobId": "ca3a7349-ba48-4644-8268-5fcd66264bd7", - "lastUpdatedDateTime": "2022-06-09T17:42:35Z", - "createdDateTime": "2022-06-09T17:42:34Z", - "expirationDateTime": "2022-06-10T17:42:34Z", + "jobId": "c06bc67b-8b7e-4f98-89e8-17900d61ba26", + "lastUpdateDateTime": "2022-10-17T18:53:24Z", + "createdDateTime": "2022-10-17T18:53:22Z", + "expirationDateTime": "2022-10-18T18:53:22Z", "status": "running", "errors": [], "tasks": { - "completed": 4, + "completed": 8, "failed": 0, - "inProgress": 5, + "inProgress": 1, "total": 9, "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:42:35.7175733Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, - { - "kind": "CustomSingleLabelClassificationLROResults", - "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:42:35.1033753Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "class": [ - { - "category": "PlayMusic", - "confidenceScore": 0.6 - } - ], - "warnings": [] - } - ], - "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" - } - }, - { - "kind": "CustomMultiLabelClassificationLROResults", - "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:42:35.1143347Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "class": [], - "warnings": [] - } - ], - "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" - } - }, - { - "kind": "CustomEntityRecognitionLROResults", - "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:42:34.8427761Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "projectName": "custom_entities_project_name", - "deploymentName": "custom_entities_project_name" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca3a7349-ba48-4644-8268-5fcd66264bd7?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "29f6bda7-443b-4f9e-9b38-84ce5f5634ed", - "Content-Length": "2636", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" - }, - "ResponseBody": { - "jobId": "ca3a7349-ba48-4644-8268-5fcd66264bd7", - "lastUpdatedDateTime": "2022-06-09T17:42:43Z", - "createdDateTime": "2022-06-09T17:42:34Z", - "expirationDateTime": "2022-06-10T17:42:34Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 7, - "failed": 0, - "inProgress": 2, - "total": 9, - "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:42:35.7175733Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:43.6041294Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7245854Z", "status": "succeeded", "results": { "documents": [ @@ -308,7 +177,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:41.9590452Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7377623Z", "status": "succeeded", "results": { "documents": [ @@ -322,31 +191,65 @@ } ], "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "EntityLinkingLROResults", + "taskName": "3", + "lastUpdateDateTime": "2022-10-17T18:53:24.022846Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a7b11e27-5b63-19a5-b4dd-37b71149ecac", + "name": "Test (assessment)", + "matches": [ + { + "text": "Test", + "offset": 0, + "length": 4, + "confidenceScore": 0.04 + } + ], + "language": "en", + "id": "Test (assessment)", + "url": "https://en.wikipedia.org/wiki/Test_(assessment)", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], "modelVersion": "2021-06-01" } }, { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:42:42.3441072Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7909911Z", "status": "succeeded", "results": { "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -357,13 +260,13 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:42:35.1033753Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.1349869Z", "status": "succeeded", "results": { "documents": [ @@ -379,14 +282,14 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:42:35.1143347Z", + "lastUpdateDateTime": "2022-10-17T18:53:22.6119461Z", "status": "succeeded", "results": { "documents": [ @@ -397,14 +300,14 @@ } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { "kind": "CustomEntityRecognitionLROResults", "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:42:34.8427761Z", + "lastUpdateDateTime": "2022-10-17T18:53:22.8122156Z", "status": "succeeded", "results": { "documents": [ @@ -418,35 +321,53 @@ "projectName": "custom_entities_project_name", "deploymentName": "custom_entities_project_name" } + }, + { + "kind": "HealthcareLROResults", + "taskName": "8", + "lastUpdateDateTime": "2022-10-17T18:53:23.9665041Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } } ] } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ca3a7349-ba48-4644-8268-5fcd66264bd7?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c06bc67b-8b7e-4f98-89e8-17900d61ba26?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a99c5ee-1bed-484f-8406-286996a22776", - "Content-Length": "3414", + "apim-request-id": "86a9b9dc-668a-4276-901b-8debb2aa1fc0", + "Content-Length": "3396", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:50 GMT", + "Date": "Mon, 17 Oct 2022 18:53:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "244" + "x-envoy-upstream-service-time": "218" }, "ResponseBody": { - "jobId": "ca3a7349-ba48-4644-8268-5fcd66264bd7", - "lastUpdatedDateTime": "2022-06-09T17:42:48Z", - "createdDateTime": "2022-06-09T17:42:34Z", - "expirationDateTime": "2022-06-10T17:42:34Z", + "jobId": "c06bc67b-8b7e-4f98-89e8-17900d61ba26", + "lastUpdateDateTime": "2022-10-17T18:53:29Z", + "createdDateTime": "2022-10-17T18:53:22Z", + "expirationDateTime": "2022-10-18T18:53:22Z", "status": "succeeded", "errors": [], "tasks": { @@ -455,28 +376,10 @@ "inProgress": 0, "total": 9, "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "8", - "lastUpdateDateTime": "2022-06-09T17:42:35.7175733Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2022-03-01" - } - }, { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:43.6041294Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7245854Z", "status": "succeeded", "results": { "documents": [ @@ -508,7 +411,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:41.9590452Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7377623Z", "status": "succeeded", "results": { "documents": [ @@ -522,13 +425,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:42:47.9545815Z", + "lastUpdateDateTime": "2022-10-17T18:53:29.7700239Z", "status": "succeeded", "results": { "documents": [ @@ -546,7 +449,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:42:48.1262682Z", + "lastUpdateDateTime": "2022-10-17T18:53:24.022846Z", "status": "succeeded", "results": { "documents": [ @@ -580,25 +483,25 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:42:42.3441072Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.7909911Z", "status": "succeeded", "results": { "documents": [ { "id": "0", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.12, - "negative": 0.86 + "positive": 0.01, + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -609,13 +512,13 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "5", - "lastUpdateDateTime": "2022-06-09T17:42:35.1033753Z", + "lastUpdateDateTime": "2022-10-17T18:53:23.1349869Z", "status": "succeeded", "results": { "documents": [ @@ -631,14 +534,14 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } }, { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "6", - "lastUpdateDateTime": "2022-06-09T17:42:35.1143347Z", + "lastUpdateDateTime": "2022-10-17T18:53:22.6119461Z", "status": "succeeded", "results": { "documents": [ @@ -649,14 +552,14 @@ } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } }, { "kind": "CustomEntityRecognitionLROResults", "taskName": "7", - "lastUpdateDateTime": "2022-06-09T17:42:34.8427761Z", + "lastUpdateDateTime": "2022-10-17T18:53:22.8122156Z", "status": "succeeded", "results": { "documents": [ @@ -670,6 +573,24 @@ "projectName": "custom_entities_project_name", "deploymentName": "custom_entities_project_name" } + }, + { + "kind": "HealthcareLROResults", + "taskName": "8", + "lastUpdateDateTime": "2022-10-17T18:53:23.9665041Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } } ] } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_empty_credential_class.json index 30683b2c05de..daa0016f4ecf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "594", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -58,10 +58,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "4c7f6e71-274c-42d1-b893-f7640eda3f00", + "apim-request-id": "a7a9340f-aa6f-4b7b-8a27-fb25a0e1b5af", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Thu, 09 Jun 2022 17:41:27 GMT" + "Date": "Mon, 17 Oct 2022 18:52:36 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_entity_action_resolutions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_entity_action_resolutions.json new file mode 100644 index 000000000000..2e90d035b2aa --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_entity_action_resolutions.json @@ -0,0 +1,132 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "272", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The cat is 1 year old and weighs 10 pounds.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "EntityRecognition", + "parameters": { + "modelVersion": "2022-10-01-preview", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b69fe7da-46b3-4cb9-b569-14d1e3bc114d", + "Content-Length": "0", + "Date": "Tue, 18 Oct 2022 20:21:40 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a0aff19e-01ff-4e84-8116-90063917f1cd?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "97" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a0aff19e-01ff-4e84-8116-90063917f1cd?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7e09414c-24e1-499e-808b-1fef852b92f8", + "Content-Length": "903", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 18 Oct 2022 20:21:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "a0aff19e-01ff-4e84-8116-90063917f1cd", + "lastUpdateDateTime": "2022-10-18T20:21:42Z", + "createdDateTime": "2022-10-18T20:21:41Z", + "expirationDateTime": "2022-10-19T20:21:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-18T20:21:42.7773131Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "1 year old", + "category": "Quantity", + "subcategory": "Age", + "offset": 11, + "length": 10, + "confidenceScore": 0.97, + "resolutions": [ + { + "resolutionKind": "AgeResolution", + "unit": "Year", + "value": 1.0 + } + ] + }, + { + "text": "10 pounds", + "category": "Quantity", + "subcategory": "Dimension", + "offset": 33, + "length": 9, + "confidenceScore": 0.8, + "resolutions": [ + { + "resolutionKind": "WeightResolution", + "unit": "Pound", + "value": 10.0 + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_action_with_options.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_action_with_options.json new file mode 100644 index 000000000000..5305b4032e42 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_action_with_options.json @@ -0,0 +1,143 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "1862", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "sentenceCount": 5, + "sortBy": "Rank", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "da5d2fe2-90cd-47eb-a3d6-cdc40da8e30a", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:04:36 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/03fa6d27-bcfd-4393-b1a7-22c5d96cb2bd?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "536" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/03fa6d27-bcfd-4393-b1a7-22c5d96cb2bd?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d38d2ebb-453a-4c1d-8a67-0cf8aef1b8a1", + "Content-Length": "1673", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:04:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "jobId": "03fa6d27-bcfd-4393-b1a7-22c5d96cb2bd", + "lastUpdateDateTime": "2022-10-11T22:04:37Z", + "createdDateTime": "2022-10-11T22:04:36Z", + "expirationDateTime": "2022-10-12T22:04:36Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:04:37.7575882Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 1, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "sentences": [ + { + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy.", + "rankScore": 0.31, + "offset": 0, + "length": 176 + }, + { + "text": "The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis.", + "rankScore": 1.0, + "offset": 177, + "length": 164 + }, + { + "text": "Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU.", + "rankScore": 0.46, + "offset": 342, + "length": 172 + }, + { + "text": "That plan is now in tatters and her political future appears uncertain.", + "rankScore": 0.24, + "offset": 515, + "length": 71 + }, + { + "text": "This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "rankScore": 0.22, + "offset": 1491, + "length": 136 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_partial_results.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_partial_results.json new file mode 100644 index 000000000000..4f8a40549e0c --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_extract_summary_partial_results.json @@ -0,0 +1,127 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "251", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "hello world", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c0bd8067-6770-49af-b3c5-876e3ee15bd4", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:04:48 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/67121c6c-4c29-41b7-a72a-34b0aedca70e?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "351" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/67121c6c-4c29-41b7-a72a-34b0aedca70e?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14bd6682-e891-4bc9-83d9-31c0a29ee28c", + "Content-Length": "843", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:04:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": { + "jobId": "67121c6c-4c29-41b7-a72a-34b0aedca70e", + "lastUpdateDateTime": "2022-10-11T22:04:49Z", + "createdDateTime": "2022-10-11T22:04:48Z", + "expirationDateTime": "2022-10-12T22:04:48Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:04:49.0724876Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 1, + "transactionsCount": 1 + }, + "documents": [ + { + "id": "2", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "sentences": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid Document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_healthcare_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_healthcare_action.json index d948413d2b0f..13428697d5eb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_healthcare_action.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_healthcare_action.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "391", + "Content-Length": "453", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,6 +36,8 @@ "kind": "Healthcare", "parameters": { "modelVersion": "latest", + "fhirVersion": "4.0.1", + "documentType": "HistoryAndPhysical", "stringIndexType": "UnicodeCodePoint" } } @@ -43,40 +45,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e07a54dd-4af3-436d-ae88-df4455a7afaf", + "apim-request-id": "2e254bf5-c2e0-4dab-94f2-7f44ce26e459", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:14:37 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0daedaae-603b-44b5-aec9-327e7da80d39?api-version=2022-05-01", + "Date": "Tue, 11 Oct 2022 22:21:23 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c7e5fd14-649f-4e34-aa73-c3741d5d7bd6?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "305" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0daedaae-603b-44b5-aec9-327e7da80d39?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c7e5fd14-649f-4e34-aa73-c3741d5d7bd6?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6397d104-1145-4771-833f-0a605cea00ba", - "Content-Length": "4712", + "apim-request-id": "f0ab42d9-08b4-42dc-887a-f983ed3cceca", + "Content-Length": "17155", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:14:42 GMT", + "Date": "Tue, 11 Oct 2022 22:21:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "3888" }, "ResponseBody": { - "jobId": "0daedaae-603b-44b5-aec9-327e7da80d39", - "lastUpdatedDateTime": "2022-06-23T02:14:38Z", - "createdDateTime": "2022-06-23T02:14:37Z", - "expirationDateTime": "2022-06-24T02:14:37Z", + "jobId": "c7e5fd14-649f-4e34-aa73-c3741d5d7bd6", + "lastUpdateDateTime": "2022-10-11T22:21:27Z", + "createdDateTime": "2022-10-11T22:21:23Z", + "expirationDateTime": "2022-10-12T22:21:23Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +90,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:14:38.4697255Z", + "lastUpdateDateTime": "2022-10-11T22:21:27.3057218Z", "status": "succeeded", "results": { "statistics": { @@ -304,7 +306,404 @@ } ], "relations": [], - "warnings": [] + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "5385a50b-2e34-4eed-b2aa-8cf4f43fe14d", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:5385a50b-2e34-4eed-b2aa-8cf4f43fe14d" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/003496a7-5240-48a3-8b32-deb538278a06", + "resource": { + "resourceType": "Composition", + "id": "003496a7-5240-48a3-8b32-deb538278a06", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/3ce0b050-9c7b-499d-9714-3378075cdaca", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/18e1b595-78fa-45b7-822d-fc4d4a088ccf", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/206c4bc3-7a50-4e02-a7b5-706989ac5461", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EPatient does not suffer from high blood pressure.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/02a3435c-56d7-419e-a63c-af8108dd18e0", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/206c4bc3-7a50-4e02-a7b5-706989ac5461", + "resource": { + "resourceType": "Practitioner", + "id": "206c4bc3-7a50-4e02-a7b5-706989ac5461", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/3ce0b050-9c7b-499d-9714-3378075cdaca", + "resource": { + "resourceType": "Patient", + "id": "3ce0b050-9c7b-499d-9714-3378075cdaca", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/18e1b595-78fa-45b7-822d-fc4d4a088ccf", + "resource": { + "resourceType": "Encounter", + "id": "18e1b595-78fa-45b7-822d-fc4d4a088ccf", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/3ce0b050-9c7b-499d-9714-3378075cdaca", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "Observation/7b4a9eaa-a7a5-4fda-950d-36b1432d38ed", + "resource": { + "resourceType": "Observation", + "id": "7b4a9eaa-a7a5-4fda-950d-36b1432d38ed", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 29 + }, + { + "url": "length", + "valueInteger": 19 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "final", + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "exam", + "display": "Exam" + } + ], + "text": "Exam" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0020538", + "display": "Hypertensive disease" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000023317" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1017493" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccs", + "code": "7.1" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000015800" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "397" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "0571-5243" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "HYPERTENS" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U002034" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0000822" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "I10-I15.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "I10-I15.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "I10" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "997.91" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU035456" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "K85004" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U002317" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85063723" + }, + { + "system": "http://loinc.org", + "code": "LA14293-7" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10020772" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "33288" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "34" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D006973" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mth", + "code": "005" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthicd9", + "code": "997.91" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "00905" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cptac", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E13785" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctrp", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "1908" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_gdc", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000458091" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C3117" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/noc", + "code": "060808" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU002068" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pcds", + "code": "PRB_11000.06" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000686951" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "23830" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "XE0Ub" + }, + { + "system": "http://snomed.info/sct", + "code": "F-70700" + }, + { + "system": "http://snomed.info/sct", + "code": "D3-02000" + }, + { + "system": "http://snomed.info/sct", + "code": "38341003" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0210" + } + ], + "text": "high blood pressure" + }, + "subject": { + "reference": "Patient/3ce0b050-9c7b-499d-9714-3378075cdaca", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/18e1b595-78fa-45b7-822d-fc4d4a088ccf", + "type": "Encounter", + "display": "unknown" + }, + "interpretation": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "code": "NEG", + "display": "Negative" + } + ], + "text": "Negative" + } + ] + } + }, + { + "fullUrl": "List/02a3435c-56d7-419e-a63c-af8108dd18e0", + "resource": { + "resourceType": "List", + "id": "02a3435c-56d7-419e-a63c-af8108dd18e0", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/3ce0b050-9c7b-499d-9714-3378075cdaca", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/18e1b595-78fa-45b7-822d-fc4d4a088ccf", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "Observation/7b4a9eaa-a7a5-4fda-950d-36b1432d38ed", + "type": "Observation", + "display": "high blood pressure" + } + } + ] + } + } + ] + } }, { "id": "1", @@ -460,6 +859,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -473,6 +873,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { @@ -486,7 +887,338 @@ ] } ], - "warnings": [] + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "f4c65650-f429-43e6-8a4f-48e5fd1ccfc7", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:f4c65650-f429-43e6-8a4f-48e5fd1ccfc7" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/346153aa-2164-4de1-94b8-1643e59de6d8", + "resource": { + "resourceType": "Composition", + "id": "346153aa-2164-4de1-94b8-1643e59de6d8", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/27811494-7b93-46a8-a4e7-1ed66ae49f29", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/54573e9b-1a46-42f0-b38e-3a3059aa86ab", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/58e100c2-02da-4493-8e63-688df25cedc4", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EPrescribed 100mg ibuprofen, taken twice daily.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/592d9bca-c601-4852-9f3b-61da956e1f73", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/58e100c2-02da-4493-8e63-688df25cedc4", + "resource": { + "resourceType": "Practitioner", + "id": "58e100c2-02da-4493-8e63-688df25cedc4", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/27811494-7b93-46a8-a4e7-1ed66ae49f29", + "resource": { + "resourceType": "Patient", + "id": "27811494-7b93-46a8-a4e7-1ed66ae49f29", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/54573e9b-1a46-42f0-b38e-3a3059aa86ab", + "resource": { + "resourceType": "Encounter", + "id": "54573e9b-1a46-42f0-b38e-3a3059aa86ab", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/27811494-7b93-46a8-a4e7-1ed66ae49f29", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "MedicationStatement/24858478-dca2-4ede-9cbb-fa1d7a31df4d", + "resource": { + "resourceType": "MedicationStatement", + "id": "24858478-dca2-4ede-9cbb-fa1d7a31df4d", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 17 + }, + { + "url": "length", + "valueInteger": 9 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "active", + "medicationCodeableConcept": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0020740", + "display": "ibuprofen" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000019879" + }, + { + "system": "http://www.whocc.no/atc", + "code": "M01AE01" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "0046165" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000006519" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2270-2077" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/drugbank", + "code": "DB01050" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/gs", + "code": "1611" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh97005926" + }, + { + "system": "http://loinc.org", + "code": "LP16165-0" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "40458" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mmsl", + "code": "d00015" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D007052" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthspl", + "code": "WK2XYI10QM" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C561" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctrp", + "code": "C561" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dcp", + "code": "00803" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dtp", + "code": "NSC0256857" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "WK2XYI10QM" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000613511" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nddf", + "code": "002377" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000040475" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "x02MO" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rxnorm", + "code": "5640" + }, + { + "system": "http://snomed.info/sct", + "code": "E-7772" + }, + { + "system": "http://snomed.info/sct", + "code": "C-603C0" + }, + { + "system": "http://snomed.info/sct", + "code": "387207008" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/usp", + "code": "m39860" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/uspmg", + "code": "MTHU000060" + }, + { + "system": "http://hl7.org/fhir/ndfrt", + "code": "4017840" + } + ], + "text": "ibuprofen" + }, + "subject": { + "reference": "Patient/27811494-7b93-46a8-a4e7-1ed66ae49f29", + "type": "Patient" + }, + "context": { + "reference": "Encounter/54573e9b-1a46-42f0-b38e-3a3059aa86ab", + "type": "Encounter", + "display": "unknown" + }, + "dosage": [ + { + "text": "100mg", + "timing": { + "repeat": { + "frequency": 2, + "period": 1, + "periodUnit": "d" + }, + "code": { + "text": "twice daily" + } + }, + "doseAndRate": [ + { + "doseQuantity": { + "value": 100 + } + } + ] + } + ] + } + }, + { + "fullUrl": "List/592d9bca-c601-4852-9f3b-61da956e1f73", + "resource": { + "resourceType": "List", + "id": "592d9bca-c601-4852-9f3b-61da956e1f73", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/27811494-7b93-46a8-a4e7-1ed66ae49f29", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/54573e9b-1a46-42f0-b38e-3a3059aa86ab", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "MedicationStatement/24858478-dca2-4ede-9cbb-fa1d7a31df4d", + "type": "MedicationStatement", + "display": "ibuprofen" + } + } + ] + } + } + ] + } } ], "errors": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multi_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multi_label_classify.json index 76a376a40c38..6e11fb4a2d77 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multi_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multi_label_classify.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "938", + "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -35,48 +35,48 @@ "taskName": "0", "kind": "CustomMultiLabelClassification", "parameters": { - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "99519f4f-3df8-43cf-9ab6-a7acbdf2d37d", + "apim-request-id": "0a04bd8c-bb92-4994-97e3-7e3a3dda2b54", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:43:29 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/487eaff9-5af8-4037-9c1f-4401d9fc655f?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:56 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c9d20208-2a2a-4aec-90da-7c841bf009aa?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "184" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/487eaff9-5af8-4037-9c1f-4401d9fc655f?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c9d20208-2a2a-4aec-90da-7c841bf009aa?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "599bd1df-7886-4d5f-b82c-95aec510c01b", - "Content-Length": "1013", + "apim-request-id": "b31ab882-ea5f-4464-945c-32dd4ac0816b", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:34 GMT", + "Date": "Mon, 17 Oct 2022 18:54:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { - "jobId": "487eaff9-5af8-4037-9c1f-4401d9fc655f", - "lastUpdatedDateTime": "2022-06-09T17:43:30Z", - "createdDateTime": "2022-06-09T17:43:30Z", - "expirationDateTime": "2022-06-10T17:43:30Z", + "jobId": "c9d20208-2a2a-4aec-90da-7c841bf009aa", + "lastUpdateDateTime": "2022-10-17T18:53:56Z", + "createdDateTime": "2022-10-17T18:53:56Z", + "expirationDateTime": "2022-10-18T18:53:56Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:30.9583252Z", + "lastUpdateDateTime": "2022-10-17T18:53:56.7131306Z", "status": "succeeded", "results": { "statistics": { @@ -132,8 +132,8 @@ } ], "errors": [], - "projectName": "multi_category_classify_project_name", - "deploymentName": "multi_category_classify_project_name" + "projectName": "multi_label_classify_project_name", + "deploymentName": "multi_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_of_same_action_with_partial_results.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_of_same_action_with_partial_results.json index 87e2d50d8c81..e07ee682dda0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_of_same_action_with_partial_results.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_of_same_action_with_partial_results.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "761", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -52,280 +52,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bd325258-8a51-4c63-a3fa-00d013cf1a1c", + "apim-request-id": "cd0d9221-933c-4350-9ea4-3205458d825c", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:43:19 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6f24e8d1-43fa-4e84-aa4f-da9b2f8ce9b7?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:44 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/27715a23-2522-4edd-a24e-b418a322bdd9?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-envoy-upstream-service-time": "223" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6f24e8d1-43fa-4e84-aa4f-da9b2f8ce9b7?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/27715a23-2522-4edd-a24e-b418a322bdd9?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5872acc-9006-4179-bbf6-ad917b4e004a", - "Content-Length": "2995", + "apim-request-id": "f83abac9-6f8c-4de2-85f5-97c41af6b018", + "Content-Length": "4117", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:24 GMT", + "Date": "Mon, 17 Oct 2022 18:53:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { - "jobId": "6f24e8d1-43fa-4e84-aa4f-da9b2f8ce9b7", - "lastUpdatedDateTime": "2022-06-09T17:43:21Z", - "createdDateTime": "2022-06-09T17:43:19Z", - "expirationDateTime": "2022-06-10T17:43:19Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 1, - "total": 3, - "items": [ - { - "kind": "EntityRecognitionLROResults", - "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:20.9335387Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "5", - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Document in request.", - "innererror": { - "code": "InvalidDocument", - "message": "Document text is empty." - } - } - } - ], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "EntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:43:21.0040349Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "5", - "entities": [ - { - "text": "cent", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 4, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "Government Accountability Office", - "category": "Organization", - "offset": 23, - "length": 32, - "confidenceScore": 0.99 - }, - { - "text": "GAO", - "category": "Organization", - "offset": 57, - "length": 3, - "confidenceScore": 0.94 - }, - { - "text": "oil", - "category": "Product", - "offset": 98, - "length": 3, - "confidenceScore": 0.67 - }, - { - "text": "natural", - "category": "Product", - "offset": 106, - "length": 7, - "confidenceScore": 0.68 - }, - { - "text": "gas", - "category": "Skill", - "offset": 114, - "length": 3, - "confidenceScore": 0.57 - }, - { - "text": "development", - "category": "Skill", - "offset": 118, - "length": 11, - "confidenceScore": 0.48 - }, - { - "text": "past six years", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 156, - "length": 14, - "confidenceScore": 0.8 - }, - { - "text": "BLM", - "category": "Organization", - "offset": 202, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "environmental protection", - "category": "Skill", - "offset": 253, - "length": 24, - "confidenceScore": 0.79 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Document in request.", - "innererror": { - "code": "InvalidDocument", - "message": "Document text is empty." - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6f24e8d1-43fa-4e84-aa4f-da9b2f8ce9b7?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "81bd0f4a-24f3-4ce8-b7d8-ee77c274ef79", - "Content-Length": "4118", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" - }, - "ResponseBody": { - "jobId": "6f24e8d1-43fa-4e84-aa4f-da9b2f8ce9b7", - "lastUpdatedDateTime": "2022-06-09T17:43:27Z", - "createdDateTime": "2022-06-09T17:43:19Z", - "expirationDateTime": "2022-06-10T17:43:19Z", + "jobId": "27715a23-2522-4edd-a24e-b418a322bdd9", + "lastUpdateDateTime": "2022-10-17T18:53:46Z", + "createdDateTime": "2022-10-17T18:53:44Z", + "expirationDateTime": "2022-10-18T18:53:44Z", "status": "succeeded", "errors": [], "tasks": { @@ -337,7 +97,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:20.9335387Z", + "lastUpdateDateTime": "2022-10-17T18:53:46.0898744Z", "status": "succeeded", "results": { "documents": [ @@ -439,7 +199,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:43:27.2144399Z", + "lastUpdateDateTime": "2022-10-17T18:53:46.1028749Z", "status": "succeeded", "results": { "documents": [ @@ -499,7 +259,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:43:21.0040349Z", + "lastUpdateDateTime": "2022-10-17T18:53:46.0746741Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_pages_of_results_returned_successfully.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_pages_of_results_returned_successfully.json index bf8b03b76ba2..d1bce5b04c11 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_pages_of_results_returned_successfully.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_multiple_pages_of_results_returned_successfully.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "1889", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -178,87 +178,885 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "53dcefd6-fda1-484a-b82c-1227efb34a53", + "apim-request-id": "7c61c7b8-676f-4239-b0d9-214f73268d45", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:42:08 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:01 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "956" + "x-envoy-upstream-service-time": "838" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72395220-9a53-4312-b44d-78d41a810f2c", - "Content-Length": "280", + "apim-request-id": "6b15f59d-6417-4f94-8e65-261e1dfdaeb3", + "Content-Length": "9794", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:13 GMT", + "Date": "Mon, 17 Oct 2022 18:53:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "395" }, "ResponseBody": { - "jobId": "42526f61-ce63-4c0f-a0b4-a1557058bc11", - "lastUpdatedDateTime": "2022-06-09T17:42:09Z", - "createdDateTime": "2022-06-09T17:42:08Z", - "expirationDateTime": "2022-06-10T17:42:08Z", + "jobId": "3647f6a3-9f63-49a4-87ea-5583b1cf73ec", + "lastUpdateDateTime": "2022-10-17T18:53:07Z", + "createdDateTime": "2022-10-17T18:53:01Z", + "expirationDateTime": "2022-10-18T18:53:01Z", "status": "running", "errors": [], "tasks": { - "completed": 0, + "completed": 2, "failed": 0, - "inProgress": 5, + "inProgress": 3, "total": 5, - "items": [] - } + "items": [ + { + "kind": "KeyPhraseExtractionLROResults", + "taskName": "1", + "lastUpdateDateTime": "2022-10-17T18:53:07.4358149Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "hello world" + ], + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + }, + { + "kind": "SentimentAnalysisLROResults", + "taskName": "4", + "lastUpdateDateTime": "2022-10-17T18:53:05.8113887Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 20, + "validDocumentsCount": 20, + "erroneousDocumentsCount": 0, + "transactionsCount": 20 + }, + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "7", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "8", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "9", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "10", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "11", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "12", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "13", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "14", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "15", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "16", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "17", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "18", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + }, + { + "id": "19", + "sentiment": "neutral", + "statistics": { + "charactersCount": 11, + "transactionsCount": 1 + }, + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.48, + "neutral": 0.51, + "negative": 0.01 + }, + "offset": 0, + "length": 11, + "text": "hello world" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01" + } + } + ] + }, + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eef3cb20-deec-46ee-ae2e-73cc26996ac7", - "Content-Length": "2707", + "apim-request-id": "35ff9c1d-eba3-4e6b-950f-6dff1adc5c04", + "Content-Length": "14298", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:18 GMT", + "Date": "Mon, 17 Oct 2022 18:53:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "229" + "x-envoy-upstream-service-time": "805" }, "ResponseBody": { - "jobId": "42526f61-ce63-4c0f-a0b4-a1557058bc11", - "lastUpdatedDateTime": "2022-06-09T17:42:19Z", - "createdDateTime": "2022-06-09T17:42:08Z", - "expirationDateTime": "2022-06-10T17:42:08Z", + "jobId": "3647f6a3-9f63-49a4-87ea-5583b1cf73ec", + "lastUpdateDateTime": "2022-10-17T18:53:08Z", + "createdDateTime": "2022-10-17T18:53:01Z", + "expirationDateTime": "2022-10-18T18:53:01Z", "status": "running", "errors": [], "tasks": { - "completed": 1, + "completed": 4, "failed": 0, - "inProgress": 4, + "inProgress": 1, "total": 5, "items": [ { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:42:15.9991618Z", + "kind": "EntityRecognitionLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-17T18:53:08.5055462Z", "status": "succeeded", "results": { "statistics": { @@ -452,48 +1250,11 @@ "errors": [], "modelVersion": "2021-06-01" } - } - ] - }, - "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-05-01" - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01\u0026showStats=True", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9cddda12-0e52-44bb-966a-334ab9662853", - "Content-Length": "14873", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "945" - }, - "ResponseBody": { - "jobId": "42526f61-ce63-4c0f-a0b4-a1557058bc11", - "lastUpdatedDateTime": "2022-06-09T17:42:22Z", - "createdDateTime": "2022-06-09T17:42:08Z", - "expirationDateTime": "2022-06-10T17:42:08Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "items": [ + }, { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:22.2985605Z", + "lastUpdateDateTime": "2022-10-17T18:53:07.4358149Z", "status": "succeeded", "results": { "statistics": { @@ -725,231 +1486,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:42:20.165833Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 20, - "validDocumentsCount": 20, - "erroneousDocumentsCount": 0, - "transactionsCount": 20 - }, - "documents": [ - { - "redactedText": "hello world", - "id": "0", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "1", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "2", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "3", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "4", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "5", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "6", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "7", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "8", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "9", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "10", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "11", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "12", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "13", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "14", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "15", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "16", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "17", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "18", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": "hello world", - "id": "19", - "statistics": { - "charactersCount": 11, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2022-10-01" } }, { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:42:15.9991618Z", + "lastUpdateDateTime": "2022-10-17T18:53:08.5983772Z", "status": "succeeded", "results": { "statistics": { @@ -1147,7 +1690,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:42:20.5666889Z", + "lastUpdateDateTime": "2022-10-17T18:53:05.8113887Z", "status": "succeeded", "results": { "statistics": { @@ -1165,16 +1708,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1192,16 +1735,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1219,16 +1762,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1246,16 +1789,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1273,16 +1816,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1300,16 +1843,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1327,16 +1870,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1354,16 +1897,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1381,16 +1924,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1408,16 +1951,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1435,16 +1978,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1462,16 +2005,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1489,16 +2032,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1516,16 +2059,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1543,16 +2086,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1570,16 +2113,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1597,16 +2140,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1624,16 +2167,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1651,16 +2194,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1678,16 +2221,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -1699,38 +2242,38 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] }, - "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-05-01" + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03e92e39-93d3-42bc-9221-2aa49708cc28", - "Content-Length": "17129", + "apim-request-id": "7bc9bcf0-1a53-4e3e-87a5-c36d729f4563", + "Content-Length": "17136", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:31 GMT", + "Date": "Mon, 17 Oct 2022 18:53:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1060" + "x-envoy-upstream-service-time": "1014" }, "ResponseBody": { - "jobId": "42526f61-ce63-4c0f-a0b4-a1557058bc11", - "lastUpdatedDateTime": "2022-06-09T17:42:30Z", - "createdDateTime": "2022-06-09T17:42:08Z", - "expirationDateTime": "2022-06-10T17:42:08Z", + "jobId": "3647f6a3-9f63-49a4-87ea-5583b1cf73ec", + "lastUpdateDateTime": "2022-10-17T18:53:14Z", + "createdDateTime": "2022-10-17T18:53:01Z", + "expirationDateTime": "2022-10-18T18:53:01Z", "status": "succeeded", "errors": [], "tasks": { @@ -1742,7 +2285,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:30.1222082Z", + "lastUpdateDateTime": "2022-10-17T18:53:08.5055462Z", "status": "succeeded", "results": { "statistics": { @@ -1940,7 +2483,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:22.2985605Z", + "lastUpdateDateTime": "2022-10-17T18:53:07.4358149Z", "status": "succeeded", "results": { "statistics": { @@ -2172,13 +2715,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:42:20.165833Z", + "lastUpdateDateTime": "2022-10-17T18:53:14.938178Z", "status": "succeeded", "results": { "statistics": { @@ -2396,7 +2939,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:42:15.9991618Z", + "lastUpdateDateTime": "2022-10-17T18:53:08.5983772Z", "status": "succeeded", "results": { "statistics": { @@ -2594,7 +3137,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:42:20.5666889Z", + "lastUpdateDateTime": "2022-10-17T18:53:05.8113887Z", "status": "succeeded", "results": { "statistics": { @@ -2612,16 +3155,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2639,16 +3182,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2666,16 +3209,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2693,16 +3236,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2720,16 +3263,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2747,16 +3290,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2774,16 +3317,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2801,16 +3344,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2828,16 +3371,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2855,16 +3398,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2882,16 +3425,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2909,16 +3452,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2936,16 +3479,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2963,16 +3506,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -2990,16 +3533,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3017,16 +3560,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3044,16 +3587,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3071,16 +3614,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3098,16 +3641,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3125,16 +3668,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3146,38 +3689,38 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] }, - "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-05-01" + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?showStats=True\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/42526f61-ce63-4c0f-a0b4-a1557058bc11?api-version=2022-05-01\u0026showStats=true\u0026top=5\u0026skip=20", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3647f6a3-9f63-49a4-87ea-5583b1cf73ec?api-version=2022-10-01-preview\u0026showStats=true\u0026top=5\u0026skip=20", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed6ae102-1f26-4171-860e-36693a2f889f", - "Content-Length": "5586", + "apim-request-id": "49f7f143-4222-41fa-b70a-f354b63e453c", + "Content-Length": "5585", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:31 GMT", + "Date": "Mon, 17 Oct 2022 18:53:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "412" + "x-envoy-upstream-service-time": "294" }, "ResponseBody": { - "jobId": "42526f61-ce63-4c0f-a0b4-a1557058bc11", - "lastUpdatedDateTime": "2022-06-09T17:42:30Z", - "createdDateTime": "2022-06-09T17:42:08Z", - "expirationDateTime": "2022-06-10T17:42:08Z", + "jobId": "3647f6a3-9f63-49a4-87ea-5583b1cf73ec", + "lastUpdateDateTime": "2022-10-17T18:53:14Z", + "createdDateTime": "2022-10-17T18:53:01Z", + "expirationDateTime": "2022-10-18T18:53:01Z", "status": "succeeded", "errors": [], "tasks": { @@ -3189,7 +3732,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:30.1222082Z", + "lastUpdateDateTime": "2022-10-17T18:53:08.5055462Z", "status": "succeeded", "results": { "statistics": { @@ -3252,7 +3795,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:22.2985605Z", + "lastUpdateDateTime": "2022-10-17T18:53:07.4358149Z", "status": "succeeded", "results": { "statistics": { @@ -3319,13 +3862,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:42:20.165833Z", + "lastUpdateDateTime": "2022-10-17T18:53:14.938178Z", "status": "succeeded", "results": { "statistics": { @@ -3393,7 +3936,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:42:15.9991618Z", + "lastUpdateDateTime": "2022-10-17T18:53:08.5983772Z", "status": "succeeded", "results": { "statistics": { @@ -3456,7 +3999,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:42:20.5666889Z", + "lastUpdateDateTime": "2022-10-17T18:53:05.8113887Z", "status": "succeeded", "results": { "statistics": { @@ -3474,16 +4017,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3501,16 +4044,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3528,16 +4071,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3555,16 +4098,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3582,16 +4125,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.97, + "positive": 0.48, + "neutral": 0.51, "negative": 0.01 }, "offset": 0, @@ -3603,7 +4146,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_out_of_order_ids_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_out_of_order_ids_multiple_tasks.json index 09322a8b2b3f..5faf897a5e8a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_out_of_order_ids_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_out_of_order_ids_multiple_tasks.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "706", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -73,108 +73,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fb020bdb-4731-4e09-803b-bc868028fb7f", + "apim-request-id": "a9d7b7db-d611-4e71-a3ca-b5cbe8a4270c", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:41:28 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a0957e79-b001-493d-916e-e032ff215312?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:36 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/632ce980-ebe0-4ea4-b90c-8f7b17fc2a63?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "624" + "x-envoy-upstream-service-time": "284" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a0957e79-b001-493d-916e-e032ff215312?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/632ce980-ebe0-4ea4-b90c-8f7b17fc2a63?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce43fba6-4213-482d-87c5-f21ebc0d2ea6", - "Content-Length": "626", + "apim-request-id": "19ddd0f7-37b6-48a6-8530-a2732659c6c7", + "Content-Length": "2993", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:33 GMT", + "Date": "Mon, 17 Oct 2022 18:52:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "465" }, "ResponseBody": { - "jobId": "a0957e79-b001-493d-916e-e032ff215312", - "lastUpdatedDateTime": "2022-06-09T17:41:33Z", - "createdDateTime": "2022-06-09T17:41:28Z", - "expirationDateTime": "2022-06-10T17:41:28Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "items": [ - { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:41:33.2166426Z", - "status": "succeeded", - "results": { - "documents": [ - { - "id": "56", - "entities": [], - "warnings": [] - }, - { - "id": "0", - "entities": [], - "warnings": [] - }, - { - "id": "19", - "entities": [], - "warnings": [] - }, - { - "id": "1", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a0957e79-b001-493d-916e-e032ff215312?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "21475e0d-16ab-46ae-931b-8dbdfb9ce33a", - "Content-Length": "2986", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "251" - }, - "ResponseBody": { - "jobId": "a0957e79-b001-493d-916e-e032ff215312", - "lastUpdatedDateTime": "2022-06-09T17:41:38Z", - "createdDateTime": "2022-06-09T17:41:28Z", - "expirationDateTime": "2022-06-10T17:41:28Z", + "jobId": "632ce980-ebe0-4ea4-b90c-8f7b17fc2a63", + "lastUpdateDateTime": "2022-10-17T18:52:39Z", + "createdDateTime": "2022-10-17T18:52:37Z", + "expirationDateTime": "2022-10-18T18:52:37Z", "status": "succeeded", "errors": [], "tasks": { @@ -186,7 +118,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:41:36.445573Z", + "lastUpdateDateTime": "2022-10-17T18:52:39.7121188Z", "status": "succeeded", "results": { "documents": [ @@ -218,7 +150,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:41:36.9599861Z", + "lastUpdateDateTime": "2022-10-17T18:52:39.758586Z", "status": "succeeded", "results": { "documents": [ @@ -244,13 +176,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:41:38.0749396Z", + "lastUpdateDateTime": "2022-10-17T18:52:39.7221071Z", "status": "succeeded", "results": { "documents": [ @@ -286,7 +218,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:41:33.2166426Z", + "lastUpdateDateTime": "2022-10-17T18:52:39.8038608Z", "status": "succeeded", "results": { "documents": [ @@ -318,7 +250,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:41:36.6770287Z", + "lastUpdateDateTime": "2022-10-17T18:52:39.6114938Z", "status": "succeeded", "results": { "documents": [ @@ -349,17 +281,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -370,19 +302,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -395,16 +327,16 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -416,7 +348,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_partial_success_for_actions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_partial_success_for_actions.json index 947f48deadcd..8a654ab06279 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_partial_success_for_actions.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_partial_success_for_actions.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,40 +44,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d2b87141-5455-44b3-a4c4-d1fa5755da04", + "apim-request-id": "0c302185-7d86-4629-a2a7-5a74d8d8cff3", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:42:56 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8cd4253e-3435-4a9b-97e2-dbc9d731c8fc?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:38 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/15680b91-5eab-4586-a4f8-3e7041c9fccf?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-envoy-upstream-service-time": "171" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8cd4253e-3435-4a9b-97e2-dbc9d731c8fc?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/15680b91-5eab-4586-a4f8-3e7041c9fccf?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0ecc12d-7dc0-4dd6-b6f6-f5fcec585c6e", - "Content-Length": "1680", + "apim-request-id": "60059e1e-6b4d-46b4-968f-47d1266eeed7", + "Content-Length": "1685", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:01 GMT", + "Date": "Mon, 17 Oct 2022 18:53:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "8cd4253e-3435-4a9b-97e2-dbc9d731c8fc", - "lastUpdatedDateTime": "2022-06-09T17:43:00Z", - "createdDateTime": "2022-06-09T17:42:56Z", - "expirationDateTime": "2022-06-10T17:42:56Z", + "jobId": "15680b91-5eab-4586-a4f8-3e7041c9fccf", + "lastUpdateDateTime": "2022-10-17T18:53:40Z", + "createdDateTime": "2022-10-17T18:53:38Z", + "expirationDateTime": "2022-10-18T18:53:38Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,25 +89,25 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:00.0217577Z", + "lastUpdateDateTime": "2022-10-17T18:53:40.2902231Z", "status": "succeeded", "results": { "documents": [ { "id": "1", - "sentiment": "neutral", + "sentiment": "negative", "confidenceScores": { - "positive": 0.06, - "neutral": 0.55, - "negative": 0.39 + "positive": 0.02, + "neutral": 0.45, + "negative": 0.53 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "negative", "confidenceScores": { - "positive": 0.06, - "neutral": 0.55, - "negative": 0.39 + "positive": 0.02, + "neutral": 0.45, + "negative": 0.53 }, "offset": 0, "length": 38, @@ -121,16 +121,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.45, - "negative": 0.54 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.45, - "negative": 0.54 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -141,13 +141,13 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:42:58.819062Z", + "lastUpdateDateTime": "2022-10-17T18:53:40.6851344Z", "status": "succeeded", "results": { "documents": [ @@ -166,7 +166,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027tr\u0027. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pass_cls.json index 140f94cb2bbb..1dcaaf2a1214 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "219", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1f656576-a47f-4135-97e8-b41c3f2ef87b", + "apim-request-id": "6942b20e-b84c-48a0-8c0a-c42f8bba65b3", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:42:02 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e01e1909-18aa-4e6f-a8ec-b379481eb07f?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:55 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/fb8d7e66-af68-4a6b-9a62-75e9423bf5d1?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e01e1909-18aa-4e6f-a8ec-b379481eb07f?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/fb8d7e66-af68-4a6b-9a62-75e9423bf5d1?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f4ed85c-9371-49c4-84f7-87bd8d083518", - "Content-Length": "672", + "apim-request-id": "75240b22-a2ec-4776-84ec-3830c79b07e8", + "Content-Length": "669", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:07 GMT", + "Date": "Mon, 17 Oct 2022 18:53:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "e01e1909-18aa-4e6f-a8ec-b379481eb07f", - "lastUpdatedDateTime": "2022-06-09T17:42:05Z", - "createdDateTime": "2022-06-09T17:42:02Z", - "expirationDateTime": "2022-06-10T17:42:02Z", + "jobId": "fb8d7e66-af68-4a6b-9a62-75e9423bf5d1", + "lastUpdateDateTime": "2022-10-17T18:52:58Z", + "createdDateTime": "2022-10-17T18:52:56Z", + "expirationDateTime": "2022-10-18T18:52:56Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:05.5127882Z", + "lastUpdateDateTime": "2022-10-17T18:52:58.31665Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_abstract_summary_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_abstract_summary_action.json new file mode 100644 index 000000000000..fdcd736ebec2 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_abstract_summary_action.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "1825", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "AbstractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f50b084f-38d6-464a-9581-1899776ee612", + "Content-Length": "0", + "Date": "Wed, 19 Oct 2022 23:44:05 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/32ecda0a-b4e6-4010-99ec-caddd75d6081?api-version=2022-10-01-preview", + "Server": "istio-envoy", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "259", + "x-http2-stream-id": "3", + "x-ms-region": "East US" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/32ecda0a-b4e6-4010-99ec-caddd75d6081?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2022e898-d853-4387-9d5b-b4b43a0af37e", + "Content-Length": "918", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 19 Oct 2022 23:44:10 GMT", + "Server": "istio-envoy", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55", + "x-http2-stream-id": "3", + "x-ms-region": "East US" + }, + "ResponseBody": { + "jobId": "32ecda0a-b4e6-4010-99ec-caddd75d6081", + "lastUpdatedDateTime": "2022-10-19T23:44:08Z", + "createdDateTime": "2022-10-19T23:44:05Z", + "expirationDateTime": "2022-10-20T23:44:05Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "AbstractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-19T23:44:08.3094254Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 1, + "validDocumentsCount": 1, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "summaries": [ + { + "text": "Foreign Secretary Boris Johnson resigns from the government. David Davis quit Sunday night over May\u0027s plan for post-EU trade. May appeared in Parliament on Monday to defend her plan.", + "contexts": [ + { + "offset": 0, + "length": 1627 + } + ] + } + ], + "id": "1", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_extract_summary_action.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_extract_summary_action.json new file mode 100644 index 000000000000..33c383d86065 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_passing_dict_extract_summary_action.json @@ -0,0 +1,150 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "1916", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis. Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree about the best way of delivering our shared commitment to honoring the result of the referendum. The Prime Minister\u0027s latest political drama began late on Sunday night when Davis quit, declaring he could not support May\u0027s Brexit plan. He said it involved too close a relationship with the EU and gave only an illusion of control being returned to the UK after it left the EU. It seems to me we\u0027re giving too much away, too easily, and that\u0027s a dangerous strategy at this time, Davis said in a BBC radio interview Monday morning. Johnson\u0027s resignation came Monday afternoon local time, just before the Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "ExtractiveSummarization", + "parameters": { + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "03317fc1-0d15-45f4-abbc-2e3fe7c00357", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:04:26 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e3b2fc07-0fb2-42df-b428-68bc4c87810a?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "398" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e3b2fc07-0fb2-42df-b428-68bc4c87810a?api-version=2022-10-01-preview\u0026showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3e232de-fe77-4ba0-956d-866ee095dc10", + "Content-Length": "1553", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:04:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" + }, + "ResponseBody": { + "jobId": "e3b2fc07-0fb2-42df-b428-68bc4c87810a", + "lastUpdateDateTime": "2022-10-11T22:04:28Z", + "createdDateTime": "2022-10-11T22:04:26Z", + "expirationDateTime": "2022-10-12T22:04:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "ExtractiveSummarizationLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:04:28.5579585Z", + "status": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 3 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 1627, + "transactionsCount": 2 + }, + "sentences": [ + { + "text": "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation of two senior Cabinet ministers in a deep split over her Brexit strategy.", + "rankScore": 0.31, + "offset": 0, + "length": 176 + }, + { + "text": "The Foreign Secretary Boris Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of Brexit negotiations, David Davis.", + "rankScore": 1.0, + "offset": 177, + "length": 164 + }, + { + "text": "Their decision to leave the government came three days after May appeared to have agreed a deal with her fractured Cabinet on the UK\u0027s post Brexit relationship with the EU.", + "rankScore": 0.46, + "offset": 342, + "length": 172 + } + ], + "warnings": [] + }, + { + "id": "2", + "statistics": { + "charactersCount": 49, + "transactionsCount": 1 + }, + "sentences": [ + { + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "rankScore": 1.0, + "offset": 0, + "length": 49 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "latest" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pii_action_categories_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pii_action_categories_filter.json index e0db0175bd6e..4573a4f83807 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pii_action_categories_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_pii_action_categories_filter.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "516", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -46,40 +46,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ac2464ae-bebe-4037-8258-6bd9d23e859c", + "apim-request-id": "e9c9bcdb-d047-42e6-980f-250e952b3f12", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:42:50 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/09394099-23a8-4870-b998-fdeb856cb92f?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:33 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c89b42ec-d917-4050-b21d-aed1f039c5c2?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/09394099-23a8-4870-b998-fdeb856cb92f?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c89b42ec-d917-4050-b21d-aed1f039c5c2?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84a7595c-f662-49ca-afc2-a7ad5cf803c6", - "Content-Length": "1020", + "apim-request-id": "08844f34-c48f-4406-9754-f70c6842fff7", + "Content-Length": "1019", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:56 GMT", + "Date": "Mon, 17 Oct 2022 18:53:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { - "jobId": "09394099-23a8-4870-b998-fdeb856cb92f", - "lastUpdatedDateTime": "2022-06-09T17:42:53Z", - "createdDateTime": "2022-06-09T17:42:51Z", - "expirationDateTime": "2022-06-10T17:42:51Z", + "jobId": "c89b42ec-d917-4050-b21d-aed1f039c5c2", + "lastUpdateDateTime": "2022-10-17T18:53:34Z", + "createdDateTime": "2022-10-17T18:53:33Z", + "expirationDateTime": "2022-10-18T18:53:33Z", "status": "succeeded", "errors": [], "tasks": { @@ -91,7 +91,7 @@ { "kind": "PiiEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:42:53.5291628Z", + "lastUpdateDateTime": "2022-10-17T18:53:34.9692758Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_recognize_custom_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_recognize_custom_entities.json index 0ff13cfb7c46..7beca0dae8cb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_recognize_custom_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_recognize_custom_entities.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,40 +44,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a66f6901-c88d-4532-8773-42ad0c1c9332", + "apim-request-id": "2a8bc207-e885-4aa7-9a45-ad1d73176677", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:43:36 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b3a5bbfe-0804-4af2-a3c0-0bcaddce247e?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:54:02 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/330517d6-75e9-4d58-9142-b9cd1b1535d4?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "439" + "x-envoy-upstream-service-time": "239" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b3a5bbfe-0804-4af2-a3c0-0bcaddce247e?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/330517d6-75e9-4d58-9142-b9cd1b1535d4?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dc0520f-6425-4cf8-8359-60a34a72719b", - "Content-Length": "3488", + "apim-request-id": "db5f3f30-16e7-4ae3-a1a0-ab5e92914746", + "Content-Length": "3486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:43:41 GMT", + "Date": "Mon, 17 Oct 2022 18:54:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { - "jobId": "b3a5bbfe-0804-4af2-a3c0-0bcaddce247e", - "lastUpdatedDateTime": "2022-06-09T17:43:37Z", - "createdDateTime": "2022-06-09T17:43:36Z", - "expirationDateTime": "2022-06-10T17:43:36Z", + "jobId": "330517d6-75e9-4d58-9142-b9cd1b1535d4", + "lastUpdateDateTime": "2022-10-17T18:54:02Z", + "createdDateTime": "2022-10-17T18:54:02Z", + "expirationDateTime": "2022-10-18T18:54:02Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:43:37.1265509Z", + "lastUpdateDateTime": "2022-10-17T18:54:02.731687Z", "status": "succeeded", "results": { "statistics": { @@ -113,6 +113,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -127,20 +134,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -155,13 +148,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -169,6 +155,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -183,13 +183,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -197,13 +190,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -217,6 +203,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -256,13 +256,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -270,6 +263,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_sentiment_analysis_task_with_opinion_mining.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_sentiment_analysis_task_with_opinion_mining.json index e10e53eaf90c..a8effcefd251 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_sentiment_analysis_task_with_opinion_mining.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_sentiment_analysis_task_with_opinion_mining.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "363", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -38,40 +38,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1f69e4d2-dd46-428c-93c4-cb950d736ba8", + "apim-request-id": "e69cb5b6-b505-4c1c-8bdc-c85bbbc68121", "Content-Length": "0", - "Date": "Fri, 17 Jun 2022 17:35:28 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9a6d8b41-cd86-4339-8a81-9261a77606ae?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:14 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8e5b1dca-57a7-4d18-bc83-c8f925b8f265?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "275" + "x-envoy-upstream-service-time": "220" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9a6d8b41-cd86-4339-8a81-9261a77606ae?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8e5b1dca-57a7-4d18-bc83-c8f925b8f265?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa747b39-726f-4c0f-b522-b13a2238e6fa", - "Content-Length": "2462", + "apim-request-id": "bf28d89a-3451-47db-8d7c-d2059e19dfba", + "Content-Length": "2457", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 17 Jun 2022 17:35:33 GMT", + "Date": "Mon, 17 Oct 2022 18:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { - "jobId": "9a6d8b41-cd86-4339-8a81-9261a77606ae", - "lastUpdatedDateTime": "2022-06-17T17:35:30Z", - "createdDateTime": "2022-06-17T17:35:28Z", - "expirationDateTime": "2022-06-18T17:35:28Z", + "jobId": "8e5b1dca-57a7-4d18-bc83-c8f925b8f265", + "lastUpdateDateTime": "2022-10-17T18:52:16Z", + "createdDateTime": "2022-10-17T18:52:14Z", + "expirationDateTime": "2022-10-18T18:52:14Z", "status": "succeeded", "errors": [], "tasks": { @@ -83,7 +83,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-17T17:35:30.1158358Z", + "lastUpdateDateTime": "2022-10-17T18:52:16.4850269Z", "status": "succeeded", "results": { "statistics": { @@ -174,17 +174,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 32, @@ -242,7 +242,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks.json index 9d9f6ff09b15..ed438a272b5d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "834", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -79,242 +79,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "665659b4-ac70-4d90-91f8-96c1dba991fb", + "apim-request-id": "94f29874-90e3-4276-96f8-fc9b19da7735", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 17:41:45 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2defaba1-8fc7-4156-86b2-bbb4fbac3ecb?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:52:49 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a7f29412-9d7e-4030-a947-ec4a03f8c45d?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "321" + "x-envoy-upstream-service-time": "247" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2defaba1-8fc7-4156-86b2-bbb4fbac3ecb?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a7f29412-9d7e-4030-a947-ec4a03f8c45d?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ced5982d-6428-407c-9205-54750f406468", - "Content-Length": "2417", + "apim-request-id": "bff9b168-a641-4003-8620-ddc291506b96", + "Content-Length": "4674", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" - }, - "ResponseBody": { - "jobId": "2defaba1-8fc7-4156-86b2-bbb4fbac3ecb", - "lastUpdatedDateTime": "2022-06-09T17:41:49Z", - "createdDateTime": "2022-06-09T17:41:45Z", - "expirationDateTime": "2022-06-10T17:41:45Z", - "status": "running", - "errors": [], - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "items": [ - { - "kind": "EntityRecognitionLROResults", - "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:41:48.4556236Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - }, - { - "kind": "PiiEntityRecognitionLROResults", - "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:41:47.5217276Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "redactedText": ":)", - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":(", - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":P", - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "redactedText": ":D", - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, - { - "kind": "EntityLinkingLROResults", - "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:41:49.97045Z", - "status": "succeeded", - "results": { - "statistics": { - "documentsCount": 4, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 0, - "transactionsCount": 4 - }, - "documents": [ - { - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2defaba1-8fc7-4156-86b2-bbb4fbac3ecb?api-version=2022-05-01\u0026showStats=True", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0ff00da7-65cf-4b84-a6f3-4bda034f8bb1", - "Content-Length": "4664", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:56 GMT", + "Date": "Mon, 17 Oct 2022 18:52:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "255" }, "ResponseBody": { - "jobId": "2defaba1-8fc7-4156-86b2-bbb4fbac3ecb", - "lastUpdatedDateTime": "2022-06-09T17:41:53Z", - "createdDateTime": "2022-06-09T17:41:45Z", - "expirationDateTime": "2022-06-10T17:41:45Z", + "jobId": "a7f29412-9d7e-4030-a947-ec4a03f8c45d", + "lastUpdateDateTime": "2022-10-17T18:52:51Z", + "createdDateTime": "2022-10-17T18:52:49Z", + "expirationDateTime": "2022-10-18T18:52:49Z", "status": "succeeded", "errors": [], "tasks": { @@ -326,7 +124,7 @@ { "kind": "EntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T17:41:48.4556236Z", + "lastUpdateDateTime": "2022-10-17T18:52:51.6601117Z", "status": "succeeded", "results": { "statistics": { @@ -380,7 +178,7 @@ { "kind": "KeyPhraseExtractionLROResults", "taskName": "1", - "lastUpdateDateTime": "2022-06-09T17:41:53.6650063Z", + "lastUpdateDateTime": "2022-10-17T18:52:51.6931838Z", "status": "succeeded", "results": { "statistics": { @@ -428,13 +226,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } }, { "kind": "PiiEntityRecognitionLROResults", "taskName": "2", - "lastUpdateDateTime": "2022-06-09T17:41:47.5217276Z", + "lastUpdateDateTime": "2022-10-17T18:52:51.7570428Z", "status": "succeeded", "results": { "statistics": { @@ -492,7 +290,7 @@ { "kind": "EntityLinkingLROResults", "taskName": "3", - "lastUpdateDateTime": "2022-06-09T17:41:49.97045Z", + "lastUpdateDateTime": "2022-10-17T18:52:51.9012135Z", "status": "succeeded", "results": { "statistics": { @@ -546,7 +344,7 @@ { "kind": "SentimentAnalysisLROResults", "taskName": "4", - "lastUpdateDateTime": "2022-06-09T17:41:53.704706Z", + "lastUpdateDateTime": "2022-10-17T18:52:51.6801624Z", "status": "succeeded", "results": { "statistics": { @@ -591,17 +389,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -612,23 +410,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -645,16 +443,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -666,7 +464,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks_v3_1.json index 86d432371b50..85c6bc0569ee 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_show_stats_and_model_version_multiple_tasks_v3_1.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "834", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tasks": { @@ -84,40 +84,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5acf6e79-c214-4fee-aa80-aab205070525", - "Date": "Thu, 09 Jun 2022 17:41:39 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4dc5c043-38b1-4307-9800-a91c69ad42bd", + "apim-request-id": "6be35380-6b19-42bd-bed8-5611de3bc18b", + "Date": "Mon, 17 Oct 2022 18:52:43 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cda1fcf9-6799-4398-8765-d589d9a8cdb3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "276" + "x-envoy-upstream-service-time": "244" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4dc5c043-38b1-4307-9800-a91c69ad42bd?showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cda1fcf9-6799-4398-8765-d589d9a8cdb3?showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e138f309-d2dc-4329-bd20-e6c963eceea4", + "apim-request-id": "13e9fb4f-9160-4f62-970a-058384856c41", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:41:44 GMT", + "Date": "Mon, 17 Oct 2022 18:52:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "252" + "x-envoy-upstream-service-time": "306" }, "ResponseBody": { - "jobId": "4dc5c043-38b1-4307-9800-a91c69ad42bd", - "lastUpdateDateTime": "2022-06-09T17:41:44Z", - "createdDateTime": "2022-06-09T17:41:39Z", - "expirationDateTime": "2022-06-10T17:41:39Z", + "jobId": "cda1fcf9-6799-4398-8765-d589d9a8cdb3", + "lastUpdateDateTime": "2022-10-17T18:52:46Z", + "createdDateTime": "2022-10-17T18:52:43Z", + "expirationDateTime": "2022-10-18T18:52:43Z", "status": "succeeded", "errors": [], "statistics": { @@ -133,7 +133,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:41:44.080423Z", + "lastUpdateDateTime": "2022-10-17T18:52:46.0323686Z", "taskName": "0", "state": "succeeded", "results": { @@ -188,7 +188,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:41:42.9640536Z", + "lastUpdateDateTime": "2022-10-17T18:52:46.2286829Z", "taskName": "3", "state": "succeeded", "results": { @@ -243,7 +243,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:41:41.6017899Z", + "lastUpdateDateTime": "2022-10-17T18:52:45.81306Z", "taskName": "2", "state": "succeeded", "results": { @@ -302,7 +302,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:41:41.8848201Z", + "lastUpdateDateTime": "2022-10-17T18:52:45.9746587Z", "taskName": "1", "state": "succeeded", "results": { @@ -351,13 +351,13 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2022-06-09T17:41:41.7036333Z", + "lastUpdateDateTime": "2022-10-17T18:52:45.6478154Z", "taskName": "4", "state": "succeeded", "results": { @@ -403,17 +403,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.0, - "neutral": 0.02, - "negative": 0.98 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -424,23 +424,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.3, - "neutral": 0.67, - "negative": 0.03 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -457,16 +457,16 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.89, - "neutral": 0.1, + "positive": 0.93, + "neutral": 0.06, "negative": 0.01 }, "offset": 0, @@ -478,7 +478,7 @@ } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2022-10-01" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_single_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_single_label_classify.json index 5c05a4fb1d31..4f2b7d903b66 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_single_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_single_label_classify.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -35,48 +35,48 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0697cb62-5481-4680-ac13-8c2326384816", + "apim-request-id": "c6bbf68a-7cd1-4815-a681-332124f25a9a", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:13:58 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/94b6a7a7-4d10-4857-ad01-4592b3aae214?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:53:49 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b5b71d9c-c3c1-4609-a428-b577f1dc04bc?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/94b6a7a7-4d10-4857-ad01-4592b3aae214?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b5b71d9c-c3c1-4609-a428-b577f1dc04bc?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67cba6f8-7cdc-412f-ae38-0321bfbf18d8", - "Content-Length": "1107", + "apim-request-id": "0c1a0a76-785b-4fc4-9cba-228f0c63c070", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:14:03 GMT", + "Date": "Mon, 17 Oct 2022 18:53:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "94b6a7a7-4d10-4857-ad01-4592b3aae214", - "lastUpdatedDateTime": "2022-06-23T02:13:59Z", - "createdDateTime": "2022-06-23T02:13:58Z", - "expirationDateTime": "2022-06-24T02:13:58Z", + "jobId": "b5b71d9c-c3c1-4609-a428-b577f1dc04bc", + "lastUpdateDateTime": "2022-10-17T18:53:51Z", + "createdDateTime": "2022-10-17T18:53:50Z", + "expirationDateTime": "2022-10-18T18:53:50Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:13:59.2796949Z", + "lastUpdateDateTime": "2022-10-17T18:53:51.1039211Z", "status": "succeeded", "results": { "statistics": { @@ -142,8 +142,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_too_many_documents.json index 706c034f8d45..a291455f6d24 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_async.pyTestAnalyzeAsynctest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "2022", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -183,13 +183,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b29a23db-4b7e-408f-8231-d0ec69f1bf68", + "apim-request-id": "c6acbdee-a334-4aea-b45a-47795a53faa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 17:42:32 GMT", + "Date": "Mon, 17 Oct 2022 18:53:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_bad_model_version_error.json index b7f4b03d6f63..5641ec1b1700 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "245", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -34,13 +34,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "51dad223-b53b-4778-9e0b-56abb49867ab", + "apim-request-id": "0cb301d1-41c4-4890-8120-7e6829849c25", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:07 GMT", + "Date": "Mon, 17 Oct 2022 18:56:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -48,7 +48,7 @@ "message": "Invalid parameter in request", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value bad is not supported for model-version parameter for job task type Healthcare. Supported values latest,2021-05-15." + "message": "Job task parameter value \u0027bad\u0027 is not supported for model-version parameter for job task type Healthcare. Supported values latest, 2021-05-15, 2022-03-01, 2022-08-15-preview." } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_cancellation.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_cancellation.json index 891391a6c244..155c2105847b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_cancellation.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_cancellation.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "101281", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -153,42 +153,65 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "31057b9b-34b5-41e8-a233-924107c0ed89", + "apim-request-id": "fd222f34-9606-4224-b318-6eb9826c2325", "Content-Length": "0", - "Date": "Thu, 14 Jul 2022 20:55:17 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:49 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1032" + "x-envoy-upstream-service-time": "780" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4:cancel?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a1854e4a-ca2d-44c3-9708-8272203a7dbe", + "Content-Length": "0", + "Date": "Mon, 17 Oct 2022 18:56:49 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acd3ee78-b919-4eae-9480-712e06bb3aac", - "Content-Length": "283", + "apim-request-id": "7506ec2d-fe5c-4c33-91d0-da0dab4649bb", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 14 Jul 2022 20:55:17 GMT", + "Date": "Mon, 17 Oct 2022 18:56:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "5976d4cc-d818-4093-89f8-8f7bce0abeff", - "lastUpdatedDateTime": "2022-07-14T20:55:17Z", - "createdDateTime": "2022-07-14T20:55:16Z", - "expirationDateTime": "2022-07-15T20:55:16Z", - "status": "notStarted", + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", "errors": [], "tasks": { "completed": 0, @@ -200,105 +223,154792 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff:cancel?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0dac2772-c04f-4362-a1d2-d4b2fcdf217e", - "Content-Length": "0", - "Date": "Thu, 14 Jul 2022 20:55:17 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff?api-version=2022-05-01", + "apim-request-id": "ee72155b-f4c3-4d4c-9156-f54e48a03cf0", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:56:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "7" }, - "ResponseBody": null + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "291b741e-6261-4363-ba4f-35439fa02df5", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:56:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90583967-e15a-471f-af05-a733d4a7db0a", - "Content-Length": "464", + "apim-request-id": "5b4b4436-37bc-4966-8cea-ce04902c3eb1", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 14 Jul 2022 20:55:21 GMT", + "Date": "Mon, 17 Oct 2022 18:56:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "5976d4cc-d818-4093-89f8-8f7bce0abeff", - "lastUpdatedDateTime": "2022-07-14T20:55:17Z", - "createdDateTime": "2022-07-14T20:55:16Z", - "expirationDateTime": "2022-07-15T20:55:16Z", - "status": "cancelled", + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", "errors": [], "tasks": { "completed": 0, "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30583856-1d1d-4a19-84c1-d47b242650ec", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6bd7226c-a5d9-432e-8728-9cab528b0e47", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c9e7b515-a98f-42c3-95d5-71b8451b806f", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2857d52b-88f1-4598-b6e5-ace8f44c430b", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71ca19c1-e14a-48e4-9c43-f799ff6d91e6", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2161bb2-a4d2-418e-b5a6-77a4eba84465", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a26ae2fb-8ce4-4fb4-bbf2-321517d15147", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea36844d-6df3-4621-bab4-0cc59684bb7e", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bd51e20f-4f3a-43b8-b3aa-17c836f19a61", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "210985d6-76ec-414f-84b4-60ca5df159dc", + "Content-Length": "279", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:56:49Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d25054f5-97b5-4de8-8bd5-a01a8b91dd98", + "Content-Length": "1658203", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2752" + }, + "ResponseBody": { + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:57:28Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, "inProgress": 0, "total": 1, "items": [ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-07-14T20:55:17.6829647Z", - "status": "cancelled", + "lastUpdateDateTime": "2022-10-17T18:57:28.7321402Z", + "status": "succeeded", "results": { - "documents": [], + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "7", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "8", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "9", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "10", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "11", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "12", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "13", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "14", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "15", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "16", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "17", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "18", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "19", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + } + ], "errors": [], - "modelVersion": "latest" + "modelVersion": "2022-03-01" } } ] - } + }, + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?showStats=False\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5976d4cc-d818-4093-89f8-8f7bce0abeff?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c6393d5-52a9-4f88-bd86-e1bf0510f9d4", - "Content-Length": "464", + "apim-request-id": "be03beaf-16da-49ae-94dc-af194427a26d", + "Content-Length": "1658203", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 14 Jul 2022 20:55:22 GMT", + "Date": "Mon, 17 Oct 2022 18:57:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "3220" }, "ResponseBody": { - "jobId": "5976d4cc-d818-4093-89f8-8f7bce0abeff", - "lastUpdatedDateTime": "2022-07-14T20:55:17Z", - "createdDateTime": "2022-07-14T20:55:16Z", - "expirationDateTime": "2022-07-15T20:55:16Z", - "status": "cancelled", + "jobId": "70cab140-95ae-4eec-8223-e91de86783f4", + "lastUpdateDateTime": "2022-10-17T18:57:28Z", + "createdDateTime": "2022-10-17T18:56:48Z", + "expirationDateTime": "2022-10-18T18:56:48Z", + "status": "succeeded", "errors": [], "tasks": { - "completed": 0, + "completed": 1, "failed": 0, "inProgress": 0, "total": 1, @@ -306,16 +155016,154258 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-07-14T20:55:17.6829647Z", - "status": "cancelled", + "lastUpdateDateTime": "2022-10-17T18:57:28.7321402Z", + "status": "succeeded", "results": { - "documents": [], + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/0/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/0/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/0/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/0/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/0/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/0/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/0/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/0/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/0/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/0/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/0/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/1/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/1/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/1/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/1/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/1/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/1/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/1/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/1/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/1/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/1/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/1/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/2/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/2/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/2/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/2/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/2/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/2/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/2/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/2/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/2/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/2/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/2/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/3/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/3/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/3/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/3/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/3/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/3/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/3/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/3/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/3/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/3/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/3/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/4/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/4/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/4/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/4/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/4/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/4/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/4/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/4/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/4/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/4/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/4/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/5/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/5/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/5/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/5/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/5/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/5/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/5/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/5/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/5/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/5/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/5/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/6/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/6/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/6/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/6/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/6/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/6/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/6/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/6/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/6/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/6/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/6/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "7", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/7/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/7/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/7/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/7/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/7/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/7/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/7/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/7/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/7/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/7/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/7/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "8", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/8/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/8/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/8/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/8/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/8/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/8/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/8/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/8/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/8/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/8/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/8/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "9", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/9/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/9/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/9/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/9/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/9/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/9/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/9/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/9/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/9/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/9/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/9/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "10", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/10/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/10/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/10/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/10/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/10/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/10/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/10/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/10/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/10/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/10/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/10/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "11", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/11/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/11/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/11/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/11/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/11/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/11/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/11/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/11/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/11/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/11/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/11/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "12", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/12/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/12/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/12/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/12/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/12/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/12/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/12/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/12/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/12/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/12/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/12/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "13", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/13/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/13/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/13/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/13/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/13/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/13/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/13/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/13/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/13/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/13/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/13/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "14", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/14/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/14/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/14/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/14/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/14/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/14/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/14/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/14/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/14/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/14/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/14/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "15", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/15/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/15/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/15/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/15/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/15/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/15/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/15/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/15/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/15/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/15/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/15/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "16", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/16/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/16/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/16/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/16/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/16/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/16/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/16/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/16/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/16/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/16/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/16/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "17", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/17/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/17/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/17/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/17/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/17/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/17/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/17/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/17/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/17/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/17/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/17/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "18", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/18/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/18/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/18/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/18/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/18/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/18/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/18/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/18/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/18/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/18/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/18/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + }, + { + "id": "19", + "entities": [ + { + "offset": 53, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 89, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 130, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 146, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 190, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 206, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 216, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 249, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 331, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 343, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 371, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 383, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 399, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 450, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 477, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 505, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 511, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 528, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 548, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 550, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 552, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 562, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 586, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 604, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 635, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 643, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 675, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 685, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 719, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 746, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 809, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 839, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 869, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 946, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 981, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 998, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 1006, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 1080, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 1092, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 1109, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 1162, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 1172, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 1185, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1212, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 1241, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 1259, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1292, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 1315, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 1387, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1397, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1423, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1464, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1480, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1524, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1540, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 1550, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 1583, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1665, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 1677, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 1705, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 1717, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 1733, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 1784, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 1811, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 1839, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 1845, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 1862, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 1882, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 1884, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 1886, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 1896, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 1920, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 1938, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 1969, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 1977, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 2009, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 2019, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 2053, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 2080, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 2143, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 2173, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2203, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 2280, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 2315, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 2332, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 2340, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 2414, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 2426, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 2443, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 2496, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 2506, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 2519, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.93, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 2546, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 2575, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.7 + }, + { + "offset": 2593, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 2626, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 2649, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + }, + { + "offset": 2721, + "length": 9, + "text": "2/14/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2731, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 2757, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2798, + "length": 9, + "text": "Admission", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2814, + "length": 9, + "text": "5/22/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2858, + "length": 9, + "text": "Discharge", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2874, + "length": 9, + "text": "4/24/2001", + "category": "Date", + "confidenceScore": 1.0 + }, + { + "offset": 2884, + "length": 9, + "text": "ADMISSION", + "category": "AdministrativeEvent", + "confidenceScore": 0.99 + }, + { + "offset": 2917, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 2999, + "length": 11, + "text": "54-year-old", + "category": "Age", + "confidenceScore": 1.0 + }, + { + "offset": 3011, + "length": 9, + "text": "gentleman", + "category": "Gender", + "confidenceScore": 1.0, + "name": "Male population group", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025266" + }, + { + "dataSource": "AOD", + "id": "0000026918" + }, + { + "dataSource": "CHV", + "id": "0000007919" + }, + { + "dataSource": "LCH", + "id": "U002897" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083510" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "24" + }, + { + "dataSource": "MSH", + "id": "D008571" + }, + { + "dataSource": "NCI", + "id": "C14366" + }, + { + "dataSource": "PSY", + "id": "30625" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "339947000" + } + ] + }, + { + "offset": 3039, + "length": 11, + "text": "progressive", + "category": "Course", + "confidenceScore": 0.92 + }, + { + "offset": 3051, + "length": 6, + "text": "angina", + "category": "SymptomOrSign", + "confidenceScore": 0.61, + "name": "Angina Pectoris", + "links": [ + { + "dataSource": "UMLS", + "id": "C0002962" + }, + { + "dataSource": "AOD", + "id": "0000005330" + }, + { + "dataSource": "BI", + "id": "BI00047" + }, + { + "dataSource": "CCPSS", + "id": "1017852" + }, + { + "dataSource": "CCS", + "id": "7.2.4.1" + }, + { + "dataSource": "CHV", + "id": "0000001165" + }, + { + "dataSource": "COSTAR", + "id": "054" + }, + { + "dataSource": "CSP", + "id": "1393-3407" + }, + { + "dataSource": "CST", + "id": "ANGINA PECTORIS" + }, + { + "dataSource": "DXP", + "id": "U000113" + }, + { + "dataSource": "HPO", + "id": "HP:0001681" + }, + { + "dataSource": "ICD10", + "id": "I20.9" + }, + { + "dataSource": "ICD10AM", + "id": "I20.9" + }, + { + "dataSource": "ICD10CM", + "id": "I20.9" + }, + { + "dataSource": "ICD9CM", + "id": "413" + }, + { + "dataSource": "ICPC", + "id": "K74" + }, + { + "dataSource": "ICPC2EENG", + "id": "K74" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU006338" + }, + { + "dataSource": "ICPC2P", + "id": "K74001" + }, + { + "dataSource": "LCH", + "id": "U000244" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005022" + }, + { + "dataSource": "LNC", + "id": "LA14275-4" + }, + { + "dataSource": "MDR", + "id": "10002383" + }, + { + "dataSource": "MEDCIN", + "id": "33215" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "142" + }, + { + "dataSource": "MSH", + "id": "D000787" + }, + { + "dataSource": "MTH", + "id": "053" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + }, + { + "dataSource": "MTHICPC2EAE", + "id": "K74" + }, + { + "dataSource": "NCI", + "id": "C51221" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10110" + }, + { + "dataSource": "NCI_FDA", + "id": "1710" + }, + { + "dataSource": "NCI_NICHD", + "id": "C51221" + }, + { + "dataSource": "NOC", + "id": "040504" + }, + { + "dataSource": "OMIM", + "id": "MTHU009903" + }, + { + "dataSource": "OMS", + "id": "29.13" + }, + { + "dataSource": "PCDS", + "id": "PRB_02040.07" + }, + { + "dataSource": "PSY", + "id": "02530" + }, + { + "dataSource": "QMR", + "id": "Q0300326" + }, + { + "dataSource": "RCD", + "id": "G33.." + }, + { + "dataSource": "RCDAE", + "id": "Ua1eH" + }, + { + "dataSource": "SNM", + "id": "F-71500" + }, + { + "dataSource": "SNMI", + "id": "D3-12000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "194828000" + }, + { + "dataSource": "WHO", + "id": "0422" + } + ] + }, + { + "offset": 3067, + "length": 19, + "text": "past several months", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3118, + "length": 23, + "text": "cardiac catheterization", + "category": "ExaminationName", + "confidenceScore": 0.99, + "name": "Cardiac Catheterization Procedures", + "links": [ + { + "dataSource": "UMLS", + "id": "C0018795" + }, + { + "dataSource": "CCPSS", + "id": "1002003" + }, + { + "dataSource": "CCS", + "id": "7.5.2" + }, + { + "dataSource": "CHV", + "id": "0000005872" + }, + { + "dataSource": "COSTAR", + "id": "154" + }, + { + "dataSource": "CPT", + "id": "1013071" + }, + { + "dataSource": "CSP", + "id": "1393-7244" + }, + { + "dataSource": "ICD10AM", + "id": "667" + }, + { + "dataSource": "ICD10AMAE", + "id": "667" + }, + { + "dataSource": "LCH", + "id": "U005615" + }, + { + "dataSource": "LCH_NW", + "id": "sh85020181" + }, + { + "dataSource": "LNC", + "id": "LP6170-7" + }, + { + "dataSource": "MDR", + "id": "10007815" + }, + { + "dataSource": "MEDCIN", + "id": "22704" + }, + { + "dataSource": "MSH", + "id": "D006328" + }, + { + "dataSource": "MTH", + "id": "U001971" + }, + { + "dataSource": "MTHICD9", + "id": "37.21" + }, + { + "dataSource": "NCI", + "id": "C38044" + }, + { + "dataSource": "NCI_CDISC", + "id": "C38044" + }, + { + "dataSource": "RCD", + "id": "7939." + }, + { + "dataSource": "RCDAE", + "id": "7939." + }, + { + "dataSource": "SNM", + "id": "P-7200" + }, + { + "dataSource": "SNMI", + "id": "P1-31600" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "41976001" + } + ] + }, + { + "offset": 3145, + "length": 17, + "text": "July of this year", + "category": "Time", + "confidenceScore": 0.98 + }, + { + "offset": 3173, + "length": 5, + "text": "total", + "category": "ConditionQualifier", + "confidenceScore": 0.98 + }, + { + "offset": 3179, + "length": 9, + "text": "occlusion", + "category": "SymptomOrSign", + "confidenceScore": 0.99, + "name": "Obstruction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0028778" + }, + { + "dataSource": "AOD", + "id": "0000004470" + }, + { + "dataSource": "CCPSS", + "id": "1002744" + }, + { + "dataSource": "CHV", + "id": "0000008870" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU053672" + }, + { + "dataSource": "LCH", + "id": "U006537" + }, + { + "dataSource": "LNC", + "id": "LP222112-7" + }, + { + "dataSource": "MDR", + "id": "10061876" + }, + { + "dataSource": "MTH", + "id": "U003467" + }, + { + "dataSource": "NCI", + "id": "C3284" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3284" + }, + { + "dataSource": "NCI_FDA", + "id": "2422" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000044954" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3284" + }, + { + "dataSource": "RCD", + "id": "X79q0" + }, + { + "dataSource": "SNM", + "id": "M-34000" + }, + { + "dataSource": "SNMI", + "id": "M-34000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "26036001" + } + ] + }, + { + "offset": 3196, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.99, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3216, + "length": 2, + "text": "50", + "category": "MeasurementValue", + "confidenceScore": 1.0 + }, + { + "offset": 3218, + "length": 1, + "text": "%", + "category": "MeasurementUnit", + "confidenceScore": 1.0 + }, + { + "offset": 3220, + "length": 9, + "text": "left main", + "category": "BodyStructure", + "confidenceScore": 0.89, + "name": "Left coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261082" + }, + { + "dataSource": "CHV", + "id": "0000056387" + }, + { + "dataSource": "CPT", + "id": "LM" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50040" + }, + { + "dataSource": "HCPCS", + "id": "LM" + }, + { + "dataSource": "LNC", + "id": "LP199529-1" + }, + { + "dataSource": "NCI", + "id": "C12872" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12872" + }, + { + "dataSource": "RCD", + "id": "X74eC" + }, + { + "dataSource": "SNM", + "id": "T-43100" + }, + { + "dataSource": "SNMI", + "id": "T-43100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "50018008" + }, + { + "dataSource": "UWDA", + "id": "50040" + } + ] + }, + { + "offset": 3230, + "length": 7, + "text": "disease", + "category": "Diagnosis", + "confidenceScore": 0.79, + "name": "Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0012634" + }, + { + "dataSource": "CCPSS", + "id": "0007490" + }, + { + "dataSource": "CHV", + "id": "0000004014" + }, + { + "dataSource": "CSP", + "id": "0944-4756" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU000256" + }, + { + "dataSource": "ICPC2P", + "id": "A99001" + }, + { + "dataSource": "LCH", + "id": "U001423" + }, + { + "dataSource": "LCH_NW", + "id": "sh85038411" + }, + { + "dataSource": "LNC", + "id": "LP21006-9" + }, + { + "dataSource": "MEDCIN", + "id": "39448" + }, + { + "dataSource": "MSH", + "id": "D004194" + }, + { + "dataSource": "NCI", + "id": "C2991" + }, + { + "dataSource": "NCI_CDISC-GLOSS", + "id": "C2991" + }, + { + "dataSource": "NCI_CTDC", + "id": "C2991" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2991" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000651193" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2991" + }, + { + "dataSource": "NCI_caDSR", + "id": "C2991" + }, + { + "dataSource": "PSY", + "id": "14520" + }, + { + "dataSource": "RCD", + "id": "X0003" + }, + { + "dataSource": "SNM", + "id": "D-Y000" + }, + { + "dataSource": "SNMI", + "id": "DF-00000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "64572001" + } + ] + }, + { + "offset": 3254, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.98, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3272, + "length": 23, + "text": "coronary artery disease", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICD10CM", + "id": "I25.1" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C26732" + }, + { + "dataSource": "NCI_GDC", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + }, + { + "offset": 3303, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3311, + "length": 5, + "text": "dying", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Dying Process", + "links": [ + { + "dataSource": "UMLS", + "id": "C0184532" + }, + { + "dataSource": "CCC", + "id": "E10.0" + }, + { + "dataSource": "CHV", + "id": "0000019055" + }, + { + "dataSource": "CPM", + "id": "65246" + }, + { + "dataSource": "LNC", + "id": "MTHU013352" + }, + { + "dataSource": "MEDCIN", + "id": "314356" + }, + { + "dataSource": "PSY", + "id": "15550" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "399069006" + } + ] + }, + { + "offset": 3343, + "length": 2, + "text": "52", + "category": "Age", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + } + }, + { + "offset": 3353, + "length": 21, + "text": "myocardial infarction", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "association": "other" + }, + "name": "Myocardial Infarction", + "links": [ + { + "dataSource": "UMLS", + "id": "C0027051" + }, + { + "dataSource": "AIR", + "id": "MYCNF" + }, + { + "dataSource": "AOD", + "id": "0000005332" + }, + { + "dataSource": "BI", + "id": "BI00102" + }, + { + "dataSource": "CCPSS", + "id": "1018028" + }, + { + "dataSource": "CHV", + "id": "0000008423" + }, + { + "dataSource": "COSTAR", + "id": "505" + }, + { + "dataSource": "CSP", + "id": "1393-3417" + }, + { + "dataSource": "CST", + "id": "INFARCT MYOCARD" + }, + { + "dataSource": "HPO", + "id": "HP:0001658" + }, + { + "dataSource": "ICD10CM", + "id": "I21" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU037952" + }, + { + "dataSource": "ICPC2P", + "id": "K75013" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059683" + }, + { + "dataSource": "LNC", + "id": "LP98884-7" + }, + { + "dataSource": "MDR", + "id": "10028596" + }, + { + "dataSource": "MEDCIN", + "id": "353001" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5" + }, + { + "dataSource": "MSH", + "id": "D009203" + }, + { + "dataSource": "MTHICD9", + "id": "410.9" + }, + { + "dataSource": "NANDA-I", + "id": "01329" + }, + { + "dataSource": "NCI", + "id": "C27996" + }, + { + "dataSource": "NCI_CELLOSAURUS", + "id": "C27996" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10152" + }, + { + "dataSource": "NCI_FDA", + "id": "1969" + }, + { + "dataSource": "NCI_GDC", + "id": "C27996" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27996" + }, + { + "dataSource": "NCI_caDSR", + "id": "C27996" + }, + { + "dataSource": "OMIM", + "id": "MTHU008101" + }, + { + "dataSource": "PSY", + "id": "32820" + }, + { + "dataSource": "RCD", + "id": "X200E" + }, + { + "dataSource": "SNM", + "id": "M-54700" + }, + { + "dataSource": "SNMI", + "id": "D3-15000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "22298006" + }, + { + "dataSource": "WHO", + "id": "0428" + } + ] + }, + { + "offset": 3387, + "length": 7, + "text": "brother", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Brothers", + "links": [ + { + "dataSource": "UMLS", + "id": "C0337527" + }, + { + "dataSource": "CHV", + "id": "0000030335" + }, + { + "dataSource": "CSP", + "id": "1124-5700" + }, + { + "dataSource": "HL7V3.0", + "id": "BRO" + }, + { + "dataSource": "LNC", + "id": "LP29863-5" + }, + { + "dataSource": "MSH", + "id": "D035781" + }, + { + "dataSource": "NCI", + "id": "C25289" + }, + { + "dataSource": "NCI_GDC", + "id": "C25289" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25289" + }, + { + "dataSource": "PSY", + "id": "07020" + }, + { + "dataSource": "SNMI", + "id": "S-10160" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "70924004" + } + ] + }, + { + "offset": 3414, + "length": 31, + "text": "coronary artery bypass grafting", + "category": "TreatmentName", + "confidenceScore": 0.99, + "name": "Coronary Artery Bypass Surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0010055" + }, + { + "dataSource": "AOD", + "id": "0000008214" + }, + { + "dataSource": "BI", + "id": "BI00768" + }, + { + "dataSource": "CCPSS", + "id": "0000669" + }, + { + "dataSource": "CCS", + "id": "7.2" + }, + { + "dataSource": "CCSR_ICD10PCS", + "id": "CAR003" + }, + { + "dataSource": "CCS_10", + "id": "44" + }, + { + "dataSource": "CHV", + "id": "0000003366" + }, + { + "dataSource": "COSTAR", + "id": "208" + }, + { + "dataSource": "CSP", + "id": "1396-8456" + }, + { + "dataSource": "ICD9CM", + "id": "36.10" + }, + { + "dataSource": "ICPC2P", + "id": "K54007" + }, + { + "dataSource": "LCH_NW", + "id": "sh85005874" + }, + { + "dataSource": "LNC", + "id": "LA14276-2" + }, + { + "dataSource": "MDR", + "id": "10011077" + }, + { + "dataSource": "MEDCIN", + "id": "342508" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "202" + }, + { + "dataSource": "MSH", + "id": "D001026" + }, + { + "dataSource": "NCI", + "id": "C51998" + }, + { + "dataSource": "NCI_CDISC", + "id": "C51998" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C51998" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000513055" + }, + { + "dataSource": "RCD", + "id": "X00tE" + }, + { + "dataSource": "SNM", + "id": "P-1436" + }, + { + "dataSource": "SNMI", + "id": "P1-33840" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "232717009" + } + ] + }, + { + "offset": 3477, + "length": 21, + "text": "stress echocardiogram", + "category": "ExaminationName", + "confidenceScore": 1.0, + "name": "Echocardiography, Stress", + "links": [ + { + "dataSource": "UMLS", + "id": "C0920208" + }, + { + "dataSource": "CHV", + "id": "0000052531" + }, + { + "dataSource": "LCH_NW", + "id": "sh91004821" + }, + { + "dataSource": "LNC", + "id": "LA28649-4" + }, + { + "dataSource": "MDR", + "id": "10050241" + }, + { + "dataSource": "MSH", + "id": "D025401" + }, + { + "dataSource": "NCI", + "id": "C80407" + }, + { + "dataSource": "NCI_CDISC", + "id": "C80407" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "816996009" + } + ] + }, + { + "offset": 3507, + "length": 11, + "text": "July , 2001", + "category": "Time", + "confidenceScore": 0.99 + }, + { + "offset": 3537, + "length": 25, + "text": "wall motion abnormalities", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + } + }, + { + "offset": 3614, + "length": 4, + "text": "body", + "category": "SymptomOrSign", + "confidenceScore": 0.59, + "name": "Structure of body of caudate nucleus", + "links": [ + { + "dataSource": "UMLS", + "id": "C0152338" + }, + { + "dataSource": "FMA", + "id": "61853" + }, + { + "dataSource": "NEU", + "id": "228" + }, + { + "dataSource": "SNM", + "id": "T-X3221" + }, + { + "dataSource": "SNMI", + "id": "T-A3221" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "31476009" + } + ] + }, + { + "offset": 3649, + "length": 11, + "text": "six minutes", + "category": "Time", + "confidenceScore": 0.94 + }, + { + "offset": 3666, + "length": 7, + "text": "minimal", + "category": "ConditionQualifier", + "confidenceScore": 0.99 + }, + { + "offset": 3674, + "length": 56, + "text": "ST depressions in the anterior lateral leads", + "category": "SymptomOrSign", + "confidenceScore": 0.97 + }, + { + "offset": 3748, + "length": 7, + "text": "fatigue", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Fatigue", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015672" + }, + { + "dataSource": "AIR", + "id": "FATIG" + }, + { + "dataSource": "AOD", + "id": "0000001768" + }, + { + "dataSource": "BI", + "id": "BI00028" + }, + { + "dataSource": "CCC", + "id": "A01.4" + }, + { + "dataSource": "CCPSS", + "id": "1014729" + }, + { + "dataSource": "CHV", + "id": "0000004914" + }, + { + "dataSource": "COSTAR", + "id": "298" + }, + { + "dataSource": "CPM", + "id": "65221" + }, + { + "dataSource": "CSP", + "id": "1385-2059" + }, + { + "dataSource": "CST", + "id": "ASTHENIA" + }, + { + "dataSource": "DXP", + "id": "U001451" + }, + { + "dataSource": "HPO", + "id": "HP:0012378" + }, + { + "dataSource": "ICD10CM", + "id": "R53.83" + }, + { + "dataSource": "ICNP", + "id": "10000695" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU080142" + }, + { + "dataSource": "ICPC2P", + "id": "A04004" + }, + { + "dataSource": "LCH", + "id": "U001739" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047465" + }, + { + "dataSource": "LNC", + "id": "MTHU013358" + }, + { + "dataSource": "MDR", + "id": "10016256" + }, + { + "dataSource": "MEDCIN", + "id": "273174" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5324" + }, + { + "dataSource": "MSH", + "id": "D005221" + }, + { + "dataSource": "MTHICD9", + "id": "780.79" + }, + { + "dataSource": "NANDA-I", + "id": "00742" + }, + { + "dataSource": "NCI", + "id": "C3036" + }, + { + "dataSource": "NCI_CDISC", + "id": "C3036" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11098" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3036" + }, + { + "dataSource": "NCI_FDA", + "id": "1849" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000321374" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3036" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3036" + }, + { + "dataSource": "NOC", + "id": "121028" + }, + { + "dataSource": "OMIM", + "id": "MTHU010062" + }, + { + "dataSource": "PCDS", + "id": "PRB_00010.03" + }, + { + "dataSource": "PDQ", + "id": "CDR0000041390" + }, + { + "dataSource": "PSY", + "id": "19400" + }, + { + "dataSource": "RCD", + "id": "1682." + }, + { + "dataSource": "SNM", + "id": "F-01610" + }, + { + "dataSource": "SNMI", + "id": "F-01360" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84229001" + }, + { + "dataSource": "WHO", + "id": "0724" + } + ] + }, + { + "offset": 3760, + "length": 10, + "text": "wrist pain", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Pain in wrist", + "links": [ + { + "dataSource": "UMLS", + "id": "C0221785" + }, + { + "dataSource": "BI", + "id": "BI00504" + }, + { + "dataSource": "CCPSS", + "id": "1016217" + }, + { + "dataSource": "CHV", + "id": "0000021489" + }, + { + "dataSource": "COSTAR", + "id": "U000624" + }, + { + "dataSource": "DXP", + "id": "U004491" + }, + { + "dataSource": "HPO", + "id": "HP:0030836" + }, + { + "dataSource": "ICD10CM", + "id": "M25.53" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU060847" + }, + { + "dataSource": "ICPC2P", + "id": "L11002" + }, + { + "dataSource": "MDR", + "id": "10048692" + }, + { + "dataSource": "MEDCIN", + "id": "939" + }, + { + "dataSource": "OMIM", + "id": "MTHU016462" + }, + { + "dataSource": "RCD", + "id": "N094F" + }, + { + "dataSource": "SNMI", + "id": "F-176A0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "56608008" + } + ] + }, + { + "offset": 3777, + "length": 18, + "text": "anginal equivalent", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Anginal equivalent", + "links": [ + { + "dataSource": "UMLS", + "id": "C0741034" + }, + { + "dataSource": "CCPSS", + "id": "1017783" + }, + { + "dataSource": "CHV", + "id": "0000047213" + }, + { + "dataSource": "ICD10CM", + "id": "I20.8" + }, + { + "dataSource": "MDR", + "id": "10076419" + }, + { + "dataSource": "MTHICD9", + "id": "413.9" + } + ] + }, + { + "offset": 3830, + "length": 9, + "text": "increased", + "category": "Course", + "confidenceScore": 0.97 + }, + { + "offset": 3840, + "length": 8, + "text": "symptoms", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "name": "Symptoms", + "links": [ + { + "dataSource": "UMLS", + "id": "C1457887" + }, + { + "dataSource": "AOD", + "id": "0000004363" + }, + { + "dataSource": "CCPSS", + "id": "0009963" + }, + { + "dataSource": "CST", + "id": "GENSYMPTOMS" + }, + { + "dataSource": "ICD9CM", + "id": "780-789.99" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU072482" + }, + { + "dataSource": "LCH_NW", + "id": "sh85131555" + }, + { + "dataSource": "LNC", + "id": "MTHU021540" + }, + { + "dataSource": "MEDCIN", + "id": "2952" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "31" + }, + { + "dataSource": "NCI", + "id": "C4876" + }, + { + "dataSource": "NCI_CDISC", + "id": "SDTM-SCTESTCD" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045022" + }, + { + "dataSource": "NCI_caDSR", + "id": "C4876" + }, + { + "dataSource": "PSY", + "id": "51140" + }, + { + "dataSource": "SNMI", + "id": "F-01250" + } + ] + }, + { + "offset": 3853, + "length": 6, + "text": "family", + "category": "FamilyRelation", + "confidenceScore": 0.97, + "name": "Family", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015576" + }, + { + "dataSource": "AOD", + "id": "0000006914" + }, + { + "dataSource": "CCPSS", + "id": "0030810" + }, + { + "dataSource": "CHV", + "id": "0000004879" + }, + { + "dataSource": "CSP", + "id": "1123-4254" + }, + { + "dataSource": "LCH", + "id": "U001730" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047009" + }, + { + "dataSource": "LNC", + "id": "LP76012-1" + }, + { + "dataSource": "MSH", + "id": "D005190" + }, + { + "dataSource": "NCI", + "id": "C25173" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000460148" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25173" + }, + { + "dataSource": "OMS", + "id": "MTHU000002" + }, + { + "dataSource": "PSY", + "id": "19300" + }, + { + "dataSource": "SNMI", + "id": "S-10000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "35359004" + } + ] + }, + { + "offset": 3880, + "length": 17, + "text": "left main disease", + "category": "Diagnosis", + "confidenceScore": 0.98, + "assertion": { + "association": "other" + }, + "name": "Left Main Coronary Artery Disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C1299433" + }, + { + "dataSource": "MEDCIN", + "id": "339763" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "371804009" + } + ] + }, + { + "offset": 3909, + "length": 10, + "text": "occasional", + "category": "Course", + "confidenceScore": 0.9 + }, + { + "offset": 3927, + "length": 3, + "text": "RCA", + "category": "BodyStructure", + "confidenceScore": 0.98, + "name": "Right coronary artery structure", + "links": [ + { + "dataSource": "UMLS", + "id": "C1261316" + }, + { + "dataSource": "CHV", + "id": "0000056439" + }, + { + "dataSource": "CPT", + "id": "RC" + }, + { + "dataSource": "CSP", + "id": "1398-9631" + }, + { + "dataSource": "FMA", + "id": "50039" + }, + { + "dataSource": "HCPCS", + "id": "RC" + }, + { + "dataSource": "NCI", + "id": "C12875" + }, + { + "dataSource": "NCI_CDISC", + "id": "C12875" + }, + { + "dataSource": "SNM", + "id": "T-43200" + }, + { + "dataSource": "SNMI", + "id": "T-43200" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "13647002" + }, + { + "dataSource": "UWDA", + "id": "50039" + } + ] + }, + { + "offset": 3960, + "length": 17, + "text": "revascularization", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Revascularization - action", + "links": [ + { + "dataSource": "UMLS", + "id": "C0581603" + }, + { + "dataSource": "AOD", + "id": "0000008211" + }, + { + "dataSource": "CHV", + "id": "0000040599" + }, + { + "dataSource": "CSP", + "id": "0579-1046" + }, + { + "dataSource": "RCD", + "id": "Xa6ZQ" + }, + { + "dataSource": "RCDAE", + "id": "Xa6ZQ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "297183000" + } + ] + }, + { + "offset": 3983, + "length": 18, + "text": "open heart surgery", + "category": "TreatmentName", + "confidenceScore": 1.0, + "name": "Open heart surgery", + "links": [ + { + "dataSource": "UMLS", + "id": "C0189745" + }, + { + "dataSource": "CHV", + "id": "0000019333" + }, + { + "dataSource": "MDR", + "id": "10048935" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4119" + }, + { + "dataSource": "SNMI", + "id": "P1-31004" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2598006" + } + ] + } + ], + "relations": [ + { + "confidenceScore": 0.99, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/3", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/4", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/11", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/12", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/12", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/13", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/15", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/14", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/16", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/17", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/18", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/19", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/20", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/21", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/22", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/32", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/31", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/33", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/35", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/36", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/37", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/41", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/42", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/46", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/47", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/52", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/53", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/60", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/61", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/61", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/62", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/64", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/63", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/65", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/66", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/67", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/68", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/69", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/70", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/71", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/81", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/80", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/82", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/84", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/85", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/86", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/90", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/91", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/95", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/96", + "role": "Treatment" + } + ] + }, + { + "confidenceScore": 0.98, + "relationType": "TimeOfEvent", + "entities": [ + { + "ref": "#/results/documents/19/entities/101", + "role": "Event" + }, + { + "ref": "#/results/documents/19/entities/102", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.9, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/109", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/110", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.93, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/110", + "role": "Condition" + }, + { + "ref": "#/results/documents/19/entities/111", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.92, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/113", + "role": "Time" + } + ] + }, + { + "confidenceScore": 0.96, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.82, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/112", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/114", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/115", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/116", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ValueOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/117", + "role": "Value" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "UnitOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/118", + "role": "Unit" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/119", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/120", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.95, + "relationType": "TimeOfExamination", + "entities": [ + { + "ref": "#/results/documents/19/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/130", + "role": "Time" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "ExaminationFindsCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/129", + "role": "Examination" + }, + { + "ref": "#/results/documents/19/entities/131", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 0.83, + "relationType": "TimeOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/133", + "role": "Time" + }, + { + "ref": "#/results/documents/19/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "QualifierOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/134", + "role": "Qualifier" + }, + { + "ref": "#/results/documents/19/entities/135", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "CourseOfCondition", + "entities": [ + { + "ref": "#/results/documents/19/entities/139", + "role": "Course" + }, + { + "ref": "#/results/documents/19/entities/140", + "role": "Condition" + } + ] + }, + { + "confidenceScore": 1.0, + "relationType": "BodySiteOfTreatment", + "entities": [ + { + "ref": "#/results/documents/19/entities/144", + "role": "BodyStructure" + }, + { + "ref": "#/results/documents/19/entities/145", + "role": "Treatment" + } + ] + } + ], + "warnings": [] + } + ], "errors": [], - "modelVersion": "latest" + "modelVersion": "2022-03-01" } } ] - } + }, + "nextLink": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/70cab140-95ae-4eec-8223-e91de86783f4?showStats=False\u0026top=5\u0026skip=20\u0026api-version=2022-10-01-preview" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_UnicodeCodePoint_body_param.json index b23ff5fb4961..d0b3d101f96f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "195", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,13 +33,13 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "eba1981b-fd8b-4dce-a001-871fb53b9f03", + "apim-request-id": "c0f8d181-32cb-430c-abfe-2d682fdb289d", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:37 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6ddb0c0e-bdfe-4384-90c8-377f2d16420e?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:57:44 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/be2bf6e4-b0cb-43dd-8e2a-b048cb3638ea?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "168" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json index e80b0f2e7be3..73d19245ab6d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,41 +22,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6cc878c0-229e-4c3d-88f5-18b9a4e6a9a0", - "Date": "Thu, 09 Jun 2022 23:10:30 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/fa64e5aa-01e5-4e3d-b971-d08d3c21d61c", + "apim-request-id": "24f67d07-9002-4cbf-a0ce-366c03dae041", + "Date": "Mon, 17 Oct 2022 18:57:39 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/c39bb150-f815-475a-8db8-a7bafe8ea688", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/fa64e5aa-01e5-4e3d-b971-d08d3c21d61c", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/c39bb150-f815-475a-8db8-a7bafe8ea688", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74eb7c45-2675-4a36-814d-93e753568184", + "apim-request-id": "c9de6aad-18c0-4cc9-afbd-48cb76d7f29c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:36 GMT", + "Date": "Mon, 17 Oct 2022 18:57:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { - "jobId": "fa64e5aa-01e5-4e3d-b971-d08d3c21d61c", - "lastUpdateDateTime": "2022-06-09T23:10:32Z", - "createdDateTime": "2022-06-09T23:10:31Z", - "expirationDateTime": "2022-06-10T23:10:31Z", + "jobId": "c39bb150-f815-475a-8db8-a7bafe8ea688", + "lastUpdateDateTime": "2022-10-17T18:57:41Z", + "createdDateTime": "2022-10-17T18:57:39Z", + "expirationDateTime": "2022-10-18T18:57:39Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_disable_service_logs.json index 57be157dc643..e6a0d7fb9bcc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_disable_service_logs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -34,41 +34,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2fbaae0e-a835-4668-b8b7-32d9caf490bd", + "apim-request-id": "1cbd9df1-2b2e-4a6c-b848-91a592e24376", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:59 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f55fa13f-320c-4995-b196-73107b2404f6?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:07 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b298eb0f-f395-43d4-a84f-fcf8e4f136b3?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "134" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f55fa13f-320c-4995-b196-73107b2404f6?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b298eb0f-f395-43d4-a84f-fcf8e4f136b3?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5d1f55b-7496-40f3-a176-93f85633cec4", - "Content-Length": "521", + "apim-request-id": "0fb6d28c-cb82-43fa-9491-251273e9300b", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:04 GMT", + "Date": "Mon, 17 Oct 2022 18:58:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { - "jobId": "f55fa13f-320c-4995-b196-73107b2404f6", - "lastUpdatedDateTime": "2022-06-09T23:10:59Z", - "createdDateTime": "2022-06-09T23:10:59Z", - "expirationDateTime": "2022-06-10T23:10:59Z", + "jobId": "b298eb0f-f395-43d4-a84f-fcf8e4f136b3", + "lastUpdateDateTime": "2022-10-17T18:58:09Z", + "createdDateTime": "2022-10-17T18:58:08Z", + "expirationDateTime": "2022-10-18T18:58:08Z", "status": "succeeded", "errors": [], "tasks": { @@ -80,7 +80,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:59.9630776Z", + "lastUpdateDateTime": "2022-10-17T18:58:09.6955805Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_attribute_error_no_result_attribute.json index 2cb6861bd632..14dd4e9b58e3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -38,41 +38,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "577a21d5-f057-43c3-9ef2-54c9e0054adb", + "apim-request-id": "ad733ddd-e421-4b05-ae90-47041bf51284", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:02 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/387f8fb1-2bcf-46d7-94b2-1624055f90af?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:26 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2746349c-779d-4a56-8d36-7f1578cf0139?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/387f8fb1-2bcf-46d7-94b2-1624055f90af?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2746349c-779d-4a56-8d36-7f1578cf0139?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87dcf1a8-eb56-4b31-bdd6-078d8ff848d0", - "Content-Length": "683", + "apim-request-id": "70947d67-edfd-4a28-ad9a-96307c934eea", + "Content-Length": "682", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:07 GMT", + "Date": "Mon, 17 Oct 2022 18:56:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { - "jobId": "387f8fb1-2bcf-46d7-94b2-1624055f90af", - "lastUpdatedDateTime": "2022-06-09T23:10:02Z", - "createdDateTime": "2022-06-09T23:10:02Z", - "expirationDateTime": "2022-06-10T23:10:02Z", + "jobId": "2746349c-779d-4a56-8d36-7f1578cf0139", + "lastUpdateDateTime": "2022-10-17T18:56:28Z", + "createdDateTime": "2022-10-17T18:56:26Z", + "expirationDateTime": "2022-10-18T18:56:26Z", "status": "succeeded", "errors": [], "tasks": { @@ -84,7 +84,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:02.6174861Z", + "lastUpdateDateTime": "2022-10-17T18:56:28.3909414Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_errors.json index 3e4a1bb41c18..02f74975c38e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5434", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,77 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9ba57e9e-bc27-4efc-bfc9-9199bbf00533", + "apim-request-id": "2d19a176-2b5e-44e9-bd1c-71268863aeb9", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:08 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4ac9655e-6786-48d0-8cc6-eb5ffcd56896?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:31 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/18692af8-bfea-4b92-9682-5d3dd68664a4?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-envoy-upstream-service-time": "182" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4ac9655e-6786-48d0-8cc6-eb5ffcd56896?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/18692af8-bfea-4b92-9682-5d3dd68664a4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df6604b0-c7f6-4c32-b8b7-ca97794a49d8", - "Content-Length": "1089", + "apim-request-id": "406dd8fe-fc13-4f23-be23-bd10fd8f44fb", + "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:13 GMT", + "Date": "Mon, 17 Oct 2022 18:56:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "4ac9655e-6786-48d0-8cc6-eb5ffcd56896", - "lastUpdatedDateTime": "2022-06-09T23:10:11Z", - "createdDateTime": "2022-06-09T23:10:08Z", - "expirationDateTime": "2022-06-10T23:10:08Z", + "jobId": "18692af8-bfea-4b92-9682-5d3dd68664a4", + "lastUpdateDateTime": "2022-10-17T18:56:33Z", + "createdDateTime": "2022-10-17T18:56:32Z", + "expirationDateTime": "2022-10-18T18:56:32Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1, + "items": [] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/18692af8-bfea-4b92-9682-5d3dd68664a4?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5d0720e-1ed1-4499-8367-4a6c834cd478", + "Content-Length": "1103", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:56:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "18692af8-bfea-4b92-9682-5d3dd68664a4", + "lastUpdateDateTime": "2022-10-17T18:56:37Z", + "createdDateTime": "2022-10-17T18:56:32Z", + "expirationDateTime": "2022-10-18T18:56:32Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +125,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:11.1821009Z", + "lastUpdateDateTime": "2022-10-17T18:56:37.8892787Z", "status": "succeeded", "results": { "documents": [ @@ -100,7 +136,7 @@ "warnings": [ { "code": "DocumentTruncated", - "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + "message": "Document is large and must be split to be processed; relations across splits may not be caught by the model" } ] } @@ -124,7 +160,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027english\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_duplicate_ids_error.json index d91ddfbd798a..3596a6e4e6c1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "276", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -38,9 +38,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "94c3977b-b43c-426b-8b72-d9dfd7410f75", + "apim-request-id": "35f0991d-2ef5-43b2-9643-ea59648b08b1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:13 GMT", + "Date": "Mon, 17 Oct 2022 18:56:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type.json index a2618a93fb01..9aa2209f08fd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,41 +22,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "268ffa3f-56e8-4ad0-8023-2e196ddce4a3", - "Date": "Thu, 09 Jun 2022 23:10:37 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/8088fecb-5df0-4e4e-88d4-0128d5ff5e56", + "apim-request-id": "2d16dcf4-f41f-4f54-9b3d-a416f8c18d79", + "Date": "Mon, 17 Oct 2022 18:57:44 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/45b6c556-6545-48dc-8f5b-b6d666f80dac", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6ddb0c0e-bdfe-4384-90c8-377f2d16420e?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/be2bf6e4-b0cb-43dd-8e2a-b048cb3638ea?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a60ebba5-15a3-4efe-8b01-f6e5e7120d14", - "Content-Length": "521", + "apim-request-id": "124b4829-3e6a-4f52-ae68-5e74d902717f", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:42 GMT", + "Date": "Mon, 17 Oct 2022 18:57:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { - "jobId": "6ddb0c0e-bdfe-4384-90c8-377f2d16420e", - "lastUpdatedDateTime": "2022-06-09T23:10:37Z", - "createdDateTime": "2022-06-09T23:10:37Z", - "expirationDateTime": "2022-06-10T23:10:37Z", + "jobId": "be2bf6e4-b0cb-43dd-8e2a-b048cb3638ea", + "lastUpdateDateTime": "2022-10-17T18:57:46Z", + "createdDateTime": "2022-10-17T18:57:45Z", + "expirationDateTime": "2022-10-18T18:57:45Z", "status": "succeeded", "errors": [], "tasks": { @@ -68,7 +68,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:37.8070822Z", + "lastUpdateDateTime": "2022-10-17T18:57:46.7855393Z", "status": "succeeded", "results": { "documents": [ @@ -88,30 +88,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/8088fecb-5df0-4e4e-88d4-0128d5ff5e56", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/45b6c556-6545-48dc-8f5b-b6d666f80dac", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab21fe46-f19b-40c1-b5aa-d47f2d84a023", + "apim-request-id": "baf790f7-95d9-4b16-a353-261de303a42b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:42 GMT", + "Date": "Mon, 17 Oct 2022 18:57:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { - "jobId": "8088fecb-5df0-4e4e-88d4-0128d5ff5e56", - "lastUpdateDateTime": "2022-06-09T23:10:38Z", - "createdDateTime": "2022-06-09T23:10:37Z", - "expirationDateTime": "2022-06-10T23:10:37Z", + "jobId": "45b6c556-6545-48dc-8f5b-b6d666f80dac", + "lastUpdateDateTime": "2022-10-17T18:57:47Z", + "createdDateTime": "2022-10-17T18:57:45Z", + "expirationDateTime": "2022-10-18T18:57:45Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type_body_param.json index 3de47c6f69dd..d4a758f771a5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_explicit_set_string_index_type_body_param.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "194", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,13 +33,13 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "85341492-9f9e-487f-843e-aca085364275", + "apim-request-id": "41945808-a953-4c87-ad25-97636e7acc60", "Content-Length": "0", - "Date": "Thu, 14 Jul 2022 20:54:02 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1ef494ec-56b1-41c1-ab04-9e7e03228e00?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:57:50 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0e16d703-2177-4dc5-a473-f9757e9d842d?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": null } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_assertion.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_assertion.json index a4f8c99fce50..2c0f91640c75 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_assertion.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_assertion.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,10 +33,10 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d7ec2a6d-d483-48c4-b531-2803d93d6c8e", + "apim-request-id": "c3cd7d5e-f884-48d9-9322-99c1d15d5302", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:53 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a78494d0-fd39-4a4f-b388-3fc965f12b49?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:02 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9764e479-2a8e-4bf8-b3ed-c0972e01e8e6?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "105" @@ -44,30 +44,30 @@ "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a78494d0-fd39-4a4f-b388-3fc965f12b49?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9764e479-2a8e-4bf8-b3ed-c0972e01e8e6?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6d72589-875e-40e8-b950-6ddec8806a27", - "Content-Length": "7517", + "apim-request-id": "de070496-453a-49bc-af15-f214e5a81da1", + "Content-Length": "7516", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:59 GMT", + "Date": "Mon, 17 Oct 2022 18:58:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "a78494d0-fd39-4a4f-b388-3fc965f12b49", - "lastUpdatedDateTime": "2022-06-09T23:10:54Z", - "createdDateTime": "2022-06-09T23:10:54Z", - "expirationDateTime": "2022-06-10T23:10:54Z", + "jobId": "9764e479-2a8e-4bf8-b3ed-c0972e01e8e6", + "lastUpdateDateTime": "2022-10-17T18:58:04Z", + "createdDateTime": "2022-10-17T18:58:02Z", + "expirationDateTime": "2022-10-18T18:58:02Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:54.9344312Z", + "lastUpdateDateTime": "2022-10-17T18:58:04.4212626Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_continuation_token.json index 3d0ad7ae41da..def916485ac9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_continuation_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "519", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -48,41 +48,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a8864e93-3610-4cc1-aa9c-6911bf8b8513", + "apim-request-id": "6dd534d2-36fb-40db-b8ce-11f2a6c48058", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:04 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0cfcda39-e897-4aba-9077-a9f2e2dde934?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:13 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/934c2cc4-0562-4ac3-a47e-a69d75e48516?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-envoy-upstream-service-time": "269" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0cfcda39-e897-4aba-9077-a9f2e2dde934?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/934c2cc4-0562-4ac3-a47e-a69d75e48516?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbeb56e7-3696-4c0b-b7ca-d5968dc9f57a", - "Content-Length": "13584", + "apim-request-id": "bf3e30bf-9fbb-4480-ac34-f4656ddfc389", + "Content-Length": "13628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:09 GMT", + "Date": "Mon, 17 Oct 2022 18:58:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { - "jobId": "0cfcda39-e897-4aba-9077-a9f2e2dde934", - "lastUpdatedDateTime": "2022-06-09T23:11:06Z", - "createdDateTime": "2022-06-09T23:11:04Z", - "expirationDateTime": "2022-06-10T23:11:04Z", + "jobId": "934c2cc4-0562-4ac3-a47e-a69d75e48516", + "lastUpdateDateTime": "2022-10-17T18:58:16Z", + "createdDateTime": "2022-10-17T18:58:13Z", + "expirationDateTime": "2022-10-18T18:58:13Z", "status": "succeeded", "errors": [], "tasks": { @@ -94,7 +94,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:06.1822014Z", + "lastUpdateDateTime": "2022-10-17T18:58:16.0545646Z", "status": "succeeded", "results": { "statistics": { @@ -1035,6 +1035,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { @@ -1384,6 +1385,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { @@ -1421,30 +1423,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0cfcda39-e897-4aba-9077-a9f2e2dde934?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/934c2cc4-0562-4ac3-a47e-a69d75e48516?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e188d42-ec19-4e64-9376-575e627ca421", - "Content-Length": "13584", + "apim-request-id": "077e0815-06d9-4333-b4f0-00f08c0d300e", + "Content-Length": "13628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:10 GMT", + "Date": "Mon, 17 Oct 2022 18:58:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { - "jobId": "0cfcda39-e897-4aba-9077-a9f2e2dde934", - "lastUpdatedDateTime": "2022-06-09T23:11:06Z", - "createdDateTime": "2022-06-09T23:11:04Z", - "expirationDateTime": "2022-06-10T23:11:04Z", + "jobId": "934c2cc4-0562-4ac3-a47e-a69d75e48516", + "lastUpdateDateTime": "2022-10-17T18:58:16Z", + "createdDateTime": "2022-10-17T18:58:13Z", + "expirationDateTime": "2022-10-18T18:58:13Z", "status": "succeeded", "errors": [], "tasks": { @@ -1456,7 +1458,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:06.1822014Z", + "lastUpdateDateTime": "2022-10-17T18:58:16.0545646Z", "status": "succeeded", "results": { "statistics": { @@ -2397,6 +2399,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { @@ -2746,6 +2749,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_fhir_bundle.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_fhir_bundle.json new file mode 100644 index 000000000000..4b8150ac81d4 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_healthcare_fhir_bundle.json @@ -0,0 +1,1613 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "345", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Baby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "Healthcare", + "parameters": { + "fhirVersion": "4.0.1", + "documentType": "ProgressNote", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "69d38054-90bc-4345-9f0b-e5fc6a292a3f", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:21:47 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f7594d7d-712f-4155-8251-fa4a44cc3084?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f7594d7d-712f-4155-8251-fa4a44cc3084?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e243c834-db71-4c77-a9cb-b5b3cfa68aa4", + "Content-Length": "21067", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:21:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" + }, + "ResponseBody": { + "jobId": "f7594d7d-712f-4155-8251-fa4a44cc3084", + "lastUpdateDateTime": "2022-10-11T22:21:49Z", + "createdDateTime": "2022-10-11T22:21:47Z", + "expirationDateTime": "2022-10-12T22:21:47Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "HealthcareLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:21:49.5046733Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "Baby", + "category": "Age", + "confidenceScore": 0.94, + "name": "Infant", + "links": [ + { + "dataSource": "UMLS", + "id": "C0021270" + }, + { + "dataSource": "AOD", + "id": "0000005273" + }, + { + "dataSource": "CCPSS", + "id": "0030805" + }, + { + "dataSource": "CHV", + "id": "0000006675" + }, + { + "dataSource": "DXP", + "id": "U002089" + }, + { + "dataSource": "LCH", + "id": "U002421" + }, + { + "dataSource": "LCH_NW", + "id": "sh85066022" + }, + { + "dataSource": "LNC", + "id": "LA19747-7" + }, + { + "dataSource": "MDR", + "id": "10021731" + }, + { + "dataSource": "MSH", + "id": "D007223" + }, + { + "dataSource": "NCI", + "id": "C27956" + }, + { + "dataSource": "NCI_FDA", + "id": "C27956" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27956" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "133931009" + } + ] + }, + { + "offset": 24, + "length": 10, + "text": "Meningitis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negativePossible" + }, + "name": "Meningitis", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025289" + }, + { + "dataSource": "AOD", + "id": "0000006185" + }, + { + "dataSource": "BI", + "id": "BI00546" + }, + { + "dataSource": "CCPSS", + "id": "1018016" + }, + { + "dataSource": "CCSR_10", + "id": "NVS001" + }, + { + "dataSource": "CCSR_ICD10CM", + "id": "NVS001" + }, + { + "dataSource": "CHV", + "id": "0000007932" + }, + { + "dataSource": "COSTAR", + "id": "478" + }, + { + "dataSource": "CSP", + "id": "2042-5301" + }, + { + "dataSource": "CST", + "id": "MENINGITIS" + }, + { + "dataSource": "DXP", + "id": "U002543" + }, + { + "dataSource": "HPO", + "id": "HP:0001287" + }, + { + "dataSource": "ICD10", + "id": "G03.9" + }, + { + "dataSource": "ICD10AM", + "id": "G03.9" + }, + { + "dataSource": "ICD10CM", + "id": "G03.9" + }, + { + "dataSource": "ICD9CM", + "id": "322.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU048434" + }, + { + "dataSource": "ICPC2P", + "id": "N71002" + }, + { + "dataSource": "LCH", + "id": "U002901" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083562" + }, + { + "dataSource": "LNC", + "id": "LP20756-0" + }, + { + "dataSource": "MDR", + "id": "10027199" + }, + { + "dataSource": "MEDCIN", + "id": "31192" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "324" + }, + { + "dataSource": "MSH", + "id": "D008581" + }, + { + "dataSource": "NANDA-I", + "id": "02899" + }, + { + "dataSource": "NCI", + "id": "C26828" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C26828" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11458" + }, + { + "dataSource": "NCI_FDA", + "id": "2389" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000471780" + }, + { + "dataSource": "NCI_NICHD", + "id": "C26828" + }, + { + "dataSource": "NCI_caDSR", + "id": "C26828" + }, + { + "dataSource": "OMIM", + "id": "MTHU005994" + }, + { + "dataSource": "PSY", + "id": "30660" + }, + { + "dataSource": "RCD", + "id": "X000H" + }, + { + "dataSource": "SNM", + "id": "M-40000" + }, + { + "dataSource": "SNMI", + "id": "DA-10010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "7180009" + }, + { + "dataSource": "WHO", + "id": "0955" + } + ] + }, + { + "offset": 47, + "length": 5, + "text": "fever", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Fever", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015967" + }, + { + "dataSource": "AIR", + "id": "FEVER" + }, + { + "dataSource": "AOD", + "id": "0000004396" + }, + { + "dataSource": "BI", + "id": "BI00751" + }, + { + "dataSource": "CCC", + "id": "K25.2" + }, + { + "dataSource": "CCPSS", + "id": "1017166" + }, + { + "dataSource": "CCSR_10", + "id": "SYM002" + }, + { + "dataSource": "CCSR_ICD10CM", + "id": "SYM002" + }, + { + "dataSource": "CHV", + "id": "0000005010" + }, + { + "dataSource": "COSTAR", + "id": "300" + }, + { + "dataSource": "CPM", + "id": "65287" + }, + { + "dataSource": "CSP", + "id": "2871-4310" + }, + { + "dataSource": "CST", + "id": "FEVER" + }, + { + "dataSource": "DXP", + "id": "U001483" + }, + { + "dataSource": "GO", + "id": "GO:0001660" + }, + { + "dataSource": "HPO", + "id": "HP:0001945" + }, + { + "dataSource": "ICD10", + "id": "R50.9" + }, + { + "dataSource": "ICD10AM", + "id": "R50.9" + }, + { + "dataSource": "ICD10CM", + "id": "R50.9" + }, + { + "dataSource": "ICD9CM", + "id": "780.60" + }, + { + "dataSource": "ICNP", + "id": "10041539" + }, + { + "dataSource": "ICPC", + "id": "A03" + }, + { + "dataSource": "ICPC2EENG", + "id": "A03" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU041751" + }, + { + "dataSource": "ICPC2P", + "id": "A03002" + }, + { + "dataSource": "LCH", + "id": "U001776" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047994" + }, + { + "dataSource": "LNC", + "id": "MTHU013518" + }, + { + "dataSource": "MDR", + "id": "10005911" + }, + { + "dataSource": "MEDCIN", + "id": "6005" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "511" + }, + { + "dataSource": "MSH", + "id": "D005334" + }, + { + "dataSource": "MTHICD9", + "id": "780.60" + }, + { + "dataSource": "NANDA-I", + "id": "01128" + }, + { + "dataSource": "NCI", + "id": "C3038" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11102" + }, + { + "dataSource": "NCI_FDA", + "id": "1858" + }, + { + "dataSource": "NCI_GDC", + "id": "C3038" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3038" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3038" + }, + { + "dataSource": "NOC", + "id": "070307" + }, + { + "dataSource": "OMIM", + "id": "MTHU005439" + }, + { + "dataSource": "OMS", + "id": "50.03" + }, + { + "dataSource": "PCDS", + "id": "PRB_11020.02" + }, + { + "dataSource": "PDQ", + "id": "CDR0000775882" + }, + { + "dataSource": "PSY", + "id": "23840" + }, + { + "dataSource": "QMR", + "id": "Q0200115" + }, + { + "dataSource": "RCD", + "id": "X76EI" + }, + { + "dataSource": "SNM", + "id": "F-03003" + }, + { + "dataSource": "SNMI", + "id": "F-03003" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "386661006" + }, + { + "dataSource": "WHO", + "id": "0725" + } + ] + }, + { + "offset": 60, + "length": 6, + "text": "mother", + "category": "FamilyRelation", + "confidenceScore": 0.99, + "name": "Mother (person)", + "links": [ + { + "dataSource": "UMLS", + "id": "C0026591" + }, + { + "dataSource": "AOD", + "id": "0000027173" + }, + { + "dataSource": "CCPSS", + "id": "U000286" + }, + { + "dataSource": "CHV", + "id": "0000008266" + }, + { + "dataSource": "CSP", + "id": "1124-5492" + }, + { + "dataSource": "HL7V3.0", + "id": "MTH" + }, + { + "dataSource": "LCH", + "id": "U003028" + }, + { + "dataSource": "LCH_NW", + "id": "sh85087526" + }, + { + "dataSource": "LNC", + "id": "LA10417-6" + }, + { + "dataSource": "MSH", + "id": "D009035" + }, + { + "dataSource": "NCI", + "id": "C25189" + }, + { + "dataSource": "NCI_CDISC", + "id": "C25189" + }, + { + "dataSource": "NCI_GDC", + "id": "C25189" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25189" + }, + { + "dataSource": "PSY", + "id": "32140" + }, + { + "dataSource": "RCD", + "id": "X78ym" + }, + { + "dataSource": "SNMI", + "id": "S-10120" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "72705000" + } + ] + }, + { + "offset": 77, + "length": 10, + "text": "Penicillin", + "category": "MedicationName", + "confidenceScore": 0.84, + "assertion": { + "certainty": "neutralPossible" + }, + "name": "penicillins", + "links": [ + { + "dataSource": "UMLS", + "id": "C0030842" + }, + { + "dataSource": "AOD", + "id": "0000019206" + }, + { + "dataSource": "ATC", + "id": "J01C" + }, + { + "dataSource": "CCPSS", + "id": "0014106" + }, + { + "dataSource": "CHV", + "id": "0000009423" + }, + { + "dataSource": "CSP", + "id": "0199-8025" + }, + { + "dataSource": "GS", + "id": "4011" + }, + { + "dataSource": "LCH", + "id": "U003521" + }, + { + "dataSource": "LCH_NW", + "id": "sh85099402" + }, + { + "dataSource": "LNC", + "id": "LP14319-5" + }, + { + "dataSource": "MEDCIN", + "id": "40319" + }, + { + "dataSource": "MMSL", + "id": "d00116" + }, + { + "dataSource": "MSH", + "id": "D010406" + }, + { + "dataSource": "NCI", + "id": "C1500" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0402815" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045296" + }, + { + "dataSource": "NDDF", + "id": "016121" + }, + { + "dataSource": "PSY", + "id": "37190" + }, + { + "dataSource": "RCD", + "id": "x009C" + }, + { + "dataSource": "SNM", + "id": "E-7260" + }, + { + "dataSource": "SNMI", + "id": "C-54000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "764146007" + }, + { + "dataSource": "VANDF", + "id": "4019880" + } + ] + }, + { + "offset": 96, + "length": 4, + "text": "baby", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Infant", + "links": [ + { + "dataSource": "UMLS", + "id": "C0021270" + }, + { + "dataSource": "AOD", + "id": "0000005273" + }, + { + "dataSource": "CCPSS", + "id": "0030805" + }, + { + "dataSource": "CHV", + "id": "0000006675" + }, + { + "dataSource": "DXP", + "id": "U002089" + }, + { + "dataSource": "LCH", + "id": "U002421" + }, + { + "dataSource": "LCH_NW", + "id": "sh85066022" + }, + { + "dataSource": "LNC", + "id": "LA19747-7" + }, + { + "dataSource": "MDR", + "id": "10021731" + }, + { + "dataSource": "MSH", + "id": "D007223" + }, + { + "dataSource": "NCI", + "id": "C27956" + }, + { + "dataSource": "NCI_FDA", + "id": "C27956" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27956" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "133931009" + } + ] + } + ], + "relations": [], + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "0ca07dd0-eab7-4fc9-8692-87474303f2c6", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:0ca07dd0-eab7-4fc9-8692-87474303f2c6" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/cfa974c9-8605-4a17-8ea2-0e4c2e2d9f37", + "resource": { + "resourceType": "Composition", + "id": "cfa974c9-8605-4a17-8ea2-0e4c2e2d9f37", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/1ed616a7-1042-46e0-8695-004b3624c01c", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EBaby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/1da542a3-07c4-4bc8-becd-12b5901f9e35", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1ed616a7-1042-46e0-8695-004b3624c01c", + "resource": { + "resourceType": "Practitioner", + "id": "1ed616a7-1042-46e0-8695-004b3624c01c", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "resource": { + "resourceType": "Patient", + "id": "9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "resource": { + "resourceType": "Encounter", + "id": "a7b926fe-d693-4fa9-af54-fe23e27efd90", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "Condition/9872f57f-1ed2-404f-8c60-ebf80a68b14f", + "resource": { + "resourceType": "Condition", + "id": "9872f57f-1ed2-404f-8c60-ebf80a68b14f", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition" + ] + }, + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 24 + }, + { + "url": "length", + "valueInteger": 10 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "verificationStatus": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", + "code": "unconfirmed", + "display": "Unconfirmed" + } + ], + "text": "Unconfirmed" + }, + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-category", + "code": "encounter-diagnosis", + "display": "Encounter Diagnosis" + } + ], + "text": "Encounter Diagnosis" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0025289", + "display": "Meningitis" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000006185" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00546" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1018016" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_10", + "code": "NVS001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_icd10cm", + "code": "NVS001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000007932" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "478" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2042-5301" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "MENINGITIS" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U002543" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0001287" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "322.9" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU048434" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "N71002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U002901" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85083562" + }, + { + "system": "http://loinc.org", + "code": "LP20756-0" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10027199" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "31192" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "324" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D008581" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "02899" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cptac", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E11458" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "2389" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000471780" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU005994" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "30660" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "X000H" + }, + { + "system": "http://snomed.info/sct", + "code": "M-40000" + }, + { + "system": "http://snomed.info/sct", + "code": "DA-10010" + }, + { + "system": "http://snomed.info/sct", + "code": "7180009" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0955" + } + ], + "text": "Meningitis" + }, + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "type": "Encounter", + "display": "unknown" + } + } + }, + { + "fullUrl": "Observation/a75311fb-ab84-4f5e-aa10-85e3745e2866", + "resource": { + "resourceType": "Observation", + "id": "a75311fb-ab84-4f5e-aa10-85e3745e2866", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 47 + }, + { + "url": "length", + "valueInteger": 5 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "final", + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "exam", + "display": "Exam" + } + ], + "text": "Exam" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0015967", + "display": "Fever" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/air", + "code": "FEVER" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000004396" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00751" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccc", + "code": "K25.2" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1017166" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_10", + "code": "SYM002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_icd10cm", + "code": "SYM002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000005010" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "300" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cpm", + "code": "65287" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2871-4310" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "FEVER" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U001483" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/go", + "code": "GO:0001660" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0001945" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "780.60" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icnp", + "code": "10041539" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icpc", + "code": "A03" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icpc2eeng", + "code": "A03" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU041751" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "A03002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U001776" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85047994" + }, + { + "system": "http://loinc.org", + "code": "MTHU013518" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10005911" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "6005" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "511" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D005334" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthicd9", + "code": "780.60" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "01128" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E11102" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "1858" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_gdc", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000450108" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/noc", + "code": "070307" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU005439" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/oms", + "code": "50.03" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pcds", + "code": "PRB_11020.02" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000775882" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "23840" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/qmr", + "code": "Q0200115" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "X76EI" + }, + { + "system": "http://snomed.info/sct", + "code": "F-03003" + }, + { + "system": "http://snomed.info/sct", + "code": "F-03003" + }, + { + "system": "http://snomed.info/sct", + "code": "386661006" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0725" + } + ], + "text": "fever" + }, + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "type": "Encounter", + "display": "unknown" + }, + "interpretation": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "code": "POS", + "display": "Positive" + } + ], + "text": "Positive" + } + ] + } + }, + { + "fullUrl": "MedicationStatement/2b8f6a85-9f25-41a3-924e-d4e15b5817bb", + "resource": { + "resourceType": "MedicationStatement", + "id": "2b8f6a85-9f25-41a3-924e-d4e15b5817bb", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 77 + }, + { + "url": "length", + "valueInteger": 10 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "unknown", + "medicationCodeableConcept": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0030842", + "display": "penicillins" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000019206" + }, + { + "system": "http://www.whocc.no/atc", + "code": "J01C" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "0014106" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000009423" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "0199-8025" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/gs", + "code": "4011" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U003521" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85099402" + }, + { + "system": "http://loinc.org", + "code": "LP14319-5" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "40319" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mmsl", + "code": "d00116" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D010406" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1500" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dtp", + "code": "NSC0402815" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000045296" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nddf", + "code": "016121" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "37190" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "x009C" + }, + { + "system": "http://snomed.info/sct", + "code": "E-7260" + }, + { + "system": "http://snomed.info/sct", + "code": "C-54000" + }, + { + "system": "http://snomed.info/sct", + "code": "764146007" + }, + { + "system": "http://hl7.org/fhir/ndfrt", + "code": "4019880" + } + ], + "text": "Penicillin" + }, + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "context": { + "reference": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "type": "Encounter", + "display": "unknown" + } + } + }, + { + "fullUrl": "List/1da542a3-07c4-4bc8-becd-12b5901f9e35", + "resource": { + "resourceType": "List", + "id": "1da542a3-07c4-4bc8-becd-12b5901f9e35", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/9e76cd1d-f12e-418b-a2c0-b603ca801e49", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/a7b926fe-d693-4fa9-af54-fe23e27efd90", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "Condition/9872f57f-1ed2-404f-8c60-ebf80a68b14f", + "type": "Condition", + "display": "Meningitis" + } + }, + { + "item": { + "reference": "Observation/a75311fb-ab84-4f5e-aa10-85e3745e2866", + "type": "Observation", + "display": "fever" + } + }, + { + "item": { + "reference": "MedicationStatement/2b8f6a85-9f25-41a3-924e-d4e15b5817bb", + "type": "MedicationStatement", + "display": "Penicillin" + } + } + ] + } + } + ] + } + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_input_with_some_errors.json index 7b3686f6fb20..eca418fdc350 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4ece5cd1-0b7a-4692-bf67-ab38716e5550", + "apim-request-id": "66ecf662-fce4-41cd-890e-1c4d0a22c228", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:21 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/11bd013c-b00c-4307-8bb2-ee332b65dfa8?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:45 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e589212a-ba2b-44ad-ac20-dab1670110e2?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "240" + "x-envoy-upstream-service-time": "196" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/11bd013c-b00c-4307-8bb2-ee332b65dfa8?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e589212a-ba2b-44ad-ac20-dab1670110e2?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7dfee33-e8b9-4016-9f0a-efc2dc0d5477", - "Content-Length": "2753", + "apim-request-id": "6aa7e8ed-f99e-4109-adef-2c074903eb2a", + "Content-Length": "2806", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:26 GMT", + "Date": "Mon, 17 Oct 2022 18:55:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "11bd013c-b00c-4307-8bb2-ee332b65dfa8", - "lastUpdatedDateTime": "2022-06-09T23:09:22Z", - "createdDateTime": "2022-06-09T23:09:21Z", - "expirationDateTime": "2022-06-10T23:09:21Z", + "jobId": "e589212a-ba2b-44ad-ac20-dab1670110e2", + "lastUpdateDateTime": "2022-10-17T18:55:47Z", + "createdDateTime": "2022-10-17T18:55:46Z", + "expirationDateTime": "2022-10-18T18:55:46Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:22.4144245Z", + "lastUpdateDateTime": "2022-10-17T18:55:47.9300995Z", "status": "succeeded", "results": { "documents": [ @@ -243,6 +243,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -256,6 +257,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { @@ -291,7 +293,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027english\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_docs.json index 94f5e4411002..fe7473decbba 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "35a54ca3-c7c8-437d-9453-2207215637fb", + "apim-request-id": "775b0e68-7cd4-47b4-96f2-c9447d131bcb", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:50 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/39c1841d-b7bc-4cc6-b1ec-3b3c0bde7408?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:15 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/fb338b08-c32c-4d96-9b95-2397552ad20f?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/39c1841d-b7bc-4cc6-b1ec-3b3c0bde7408?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/fb338b08-c32c-4d96-9b95-2397552ad20f?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ef9d395-a5bd-48ff-8846-4eb5baf707ca", - "Content-Length": "730", + "apim-request-id": "bad2eeed-ec24-4c39-8105-970edd27f9aa", + "Content-Length": "744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:55 GMT", + "Date": "Mon, 17 Oct 2022 18:56:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "39c1841d-b7bc-4cc6-b1ec-3b3c0bde7408", - "lastUpdatedDateTime": "2022-06-09T23:09:51Z", - "createdDateTime": "2022-06-09T23:09:50Z", - "expirationDateTime": "2022-06-10T23:09:50Z", + "jobId": "fb338b08-c32c-4d96-9b95-2397552ad20f", + "lastUpdateDateTime": "2022-10-17T18:56:17Z", + "createdDateTime": "2022-10-17T18:56:15Z", + "expirationDateTime": "2022-10-18T18:56:15Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:51.4637127Z", + "lastUpdateDateTime": "2022-10-17T18:56:17.5098312Z", "status": "succeeded", "results": { "documents": [], @@ -91,7 +91,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_method.json index 6269a155c55b..ceb6263ba577 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8e986e11-e87f-44f1-b91e-2db9a00ffe53", + "apim-request-id": "f584dfc4-e127-4169-8479-63cec4e3796e", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:44 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c371d352-16b7-49ac-9c42-1bf4a98818c9?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:09 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/26bf1f50-98f4-4ec7-b5dd-7ed6512bb372?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "191" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c371d352-16b7-49ac-9c42-1bf4a98818c9?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/26bf1f50-98f4-4ec7-b5dd-7ed6512bb372?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5a0163f-56fe-49a5-9457-8a59edb0c840", - "Content-Length": "730", + "apim-request-id": "4b940391-6f21-4ba2-940d-d15618ca07c5", + "Content-Length": "744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:49 GMT", + "Date": "Mon, 17 Oct 2022 18:56:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { - "jobId": "c371d352-16b7-49ac-9c42-1bf4a98818c9", - "lastUpdatedDateTime": "2022-06-09T23:09:45Z", - "createdDateTime": "2022-06-09T23:09:45Z", - "expirationDateTime": "2022-06-10T23:09:45Z", + "jobId": "26bf1f50-98f4-4ec7-b5dd-7ed6512bb372", + "lastUpdateDateTime": "2022-10-17T18:56:11Z", + "createdDateTime": "2022-10-17T18:56:10Z", + "expirationDateTime": "2022-10-18T18:56:10Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:45.6390207Z", + "lastUpdateDateTime": "2022-10-17T18:56:11.8972254Z", "status": "succeeded", "results": { "documents": [], @@ -91,7 +91,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_normalized_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_normalized_text.json index c54b1e48e1e1..62d896135630 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_normalized_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_normalized_text.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "401bc9f9-e592-4bf8-81be-d28f2cf47fe7", + "apim-request-id": "07579b81-9d42-4168-904b-16a2ce377769", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:48 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/94291f92-0807-4568-91f7-3c1d64474011?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:57:56 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c2c4ec40-838d-4d69-9200-645a6d37ff0d?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/94291f92-0807-4568-91f7-3c1d64474011?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c2c4ec40-838d-4d69-9200-645a6d37ff0d?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40c6ca49-bd6f-41b1-8e4c-ce3ad87a04a3", - "Content-Length": "2686", + "apim-request-id": "9687edc2-682c-47f4-aa4b-b2eb993a7d73", + "Content-Length": "2708", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:53 GMT", + "Date": "Mon, 17 Oct 2022 18:58:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "94291f92-0807-4568-91f7-3c1d64474011", - "lastUpdatedDateTime": "2022-06-09T23:10:49Z", - "createdDateTime": "2022-06-09T23:10:48Z", - "expirationDateTime": "2022-06-10T23:10:48Z", + "jobId": "c2c4ec40-838d-4d69-9200-645a6d37ff0d", + "lastUpdateDateTime": "2022-10-17T18:57:58Z", + "createdDateTime": "2022-10-17T18:57:57Z", + "expirationDateTime": "2022-10-18T18:57:57Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:49.9030737Z", + "lastUpdateDateTime": "2022-10-17T18:57:58.6403036Z", "status": "succeeded", "results": { "documents": [ @@ -285,6 +285,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_out_of_order_ids.json index 06c0a988bc69..c61b7829b682 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "367", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -53,41 +53,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "40ecbf47-333f-4273-9f92-b9eb1fa441dc", + "apim-request-id": "a72374eb-1351-4a02-b762-24e70e6df7a2", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:27 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2cbe95e7-897d-4f2b-9da0-dbac13f1f56f?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:53 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b36d65f5-afbf-447d-a023-8729d9eec912?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "205" + "x-envoy-upstream-service-time": "303" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2cbe95e7-897d-4f2b-9da0-dbac13f1f56f?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b36d65f5-afbf-447d-a023-8729d9eec912?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c7230ef-96aa-472d-8097-2f45b4b658fe", - "Content-Length": "848", + "apim-request-id": "78feddfe-8dd3-4b03-81f5-0580a538c6fd", + "Content-Length": "847", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:32 GMT", + "Date": "Mon, 17 Oct 2022 18:55:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "2cbe95e7-897d-4f2b-9da0-dbac13f1f56f", - "lastUpdatedDateTime": "2022-06-09T23:09:28Z", - "createdDateTime": "2022-06-09T23:09:27Z", - "expirationDateTime": "2022-06-10T23:09:27Z", + "jobId": "b36d65f5-afbf-447d-a023-8729d9eec912", + "lastUpdateDateTime": "2022-10-17T18:55:55Z", + "createdDateTime": "2022-10-17T18:55:53Z", + "expirationDateTime": "2022-10-18T18:55:53Z", "status": "succeeded", "errors": [], "tasks": { @@ -99,7 +99,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:28.5722135Z", + "lastUpdateDateTime": "2022-10-17T18:55:55.6149839Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_pass_cls.json index 0be6cdd3ea63..d385ec2b7a42 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "212", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2f4c48e4-3dcd-4b53-b9d0-bf747a65890c", + "apim-request-id": "c6780745-8e63-4c92-92d8-fd0821176b78", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:14 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/813de675-43ef-4c6f-8be6-67e30ad48ba3?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:42 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3696b2ce-634c-4026-9a60-65db315afe06?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/813de675-43ef-4c6f-8be6-67e30ad48ba3?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/3696b2ce-634c-4026-9a60-65db315afe06?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b5f9be1-5cc8-457e-94d9-88a07340f006", - "Content-Length": "1229", + "apim-request-id": "12d67335-8a8a-4ac6-ae09-8f35ec589f5c", + "Content-Length": "1228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:19 GMT", + "Date": "Mon, 17 Oct 2022 18:56:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "813de675-43ef-4c6f-8be6-67e30ad48ba3", - "lastUpdatedDateTime": "2022-06-09T23:10:15Z", - "createdDateTime": "2022-06-09T23:10:14Z", - "expirationDateTime": "2022-06-10T23:10:14Z", + "jobId": "3696b2ce-634c-4026-9a60-65db315afe06", + "lastUpdateDateTime": "2022-10-17T18:56:45Z", + "createdDateTime": "2022-10-17T18:56:43Z", + "expirationDateTime": "2022-10-18T18:56:43Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:15.6840176Z", + "lastUpdateDateTime": "2022-10-17T18:56:45.1240168Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string.json index 7b37a73870bf..45af6a2f3a9e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "365", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "135066d6-328e-4934-a5ca-b746480dc06d", + "apim-request-id": "ed6c6a2e-6bc8-4701-9941-7072a227a14f", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:09 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e0c3a19f-c679-4c46-8ae2-2382b70cd1a5?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:34 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ba7b6fd6-d456-4da8-a8b6-27ac4d3e54f4?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "284" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e0c3a19f-c679-4c46-8ae2-2382b70cd1a5?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ba7b6fd6-d456-4da8-a8b6-27ac4d3e54f4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a34df12-5cd4-45d3-828f-fe196d833288", - "Content-Length": "4488", + "apim-request-id": "6a778610-e0a0-4182-b0e4-b936419c81b6", + "Content-Length": "4531", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:14 GMT", + "Date": "Mon, 17 Oct 2022 18:55:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "e0c3a19f-c679-4c46-8ae2-2382b70cd1a5", - "lastUpdatedDateTime": "2022-06-09T23:09:10Z", - "createdDateTime": "2022-06-09T23:09:09Z", - "expirationDateTime": "2022-06-10T23:09:09Z", + "jobId": "ba7b6fd6-d456-4da8-a8b6-27ac4d3e54f4", + "lastUpdateDateTime": "2022-10-17T18:55:36Z", + "createdDateTime": "2022-10-17T18:55:34Z", + "expirationDateTime": "2022-10-18T18:55:34Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:10.3316646Z", + "lastUpdateDateTime": "2022-10-17T18:55:36.4819428Z", "status": "succeeded", "results": { "documents": [ @@ -447,6 +447,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -460,6 +461,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string_v3_1.json index 6265a5fadc44..5542dffcea1a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_passing_only_string_v3_1.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "239", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -32,41 +32,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9b81180f-6bad-4300-9679-7dbf90be821d", - "Date": "Thu, 09 Jun 2022 23:09:14 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a2cdd60e-3ac7-416f-8d69-7e371cb39612", + "apim-request-id": "e043bbda-d7e0-42ac-a3d5-b61d74945b6c", + "Date": "Mon, 17 Oct 2022 18:55:40 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/d543d183-bd70-4515-8b07-f10582ff9666", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a2cdd60e-3ac7-416f-8d69-7e371cb39612", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/d543d183-bd70-4515-8b07-f10582ff9666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94c39f73-5057-4188-902a-6cb6e20989a8", + "apim-request-id": "9a21db2a-f606-4d08-b07d-3f93f7219b7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:21 GMT", + "Date": "Mon, 17 Oct 2022 18:55:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "a2cdd60e-3ac7-416f-8d69-7e371cb39612", - "lastUpdateDateTime": "2022-06-09T23:09:16Z", - "createdDateTime": "2022-06-09T23:09:15Z", - "expirationDateTime": "2022-06-10T23:09:15Z", + "jobId": "d543d183-bd70-4515-8b07-f10582ff9666", + "lastUpdateDateTime": "2022-10-17T18:55:42Z", + "createdDateTime": "2022-10-17T18:55:40Z", + "expirationDateTime": "2022-10-18T18:55:40Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_payload_too_large.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_payload_too_large.json index 26a63e933ab1..be706e612d0a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_payload_too_large.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_payload_too_large.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "689531", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -2528,13 +2528,13 @@ }, "StatusCode": 413, "ResponseHeaders": { - "apim-request-id": "bdf53069-427a-458d-8966-17025c242de9", + "apim-request-id": "cef0abdf-703b-4b90-baa3-562eebbca4f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:27 GMT", + "Date": "Mon, 17 Oct 2022 18:55:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_poller_metadata.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_poller_metadata.json index 9a8c69d04e91..ab5fa94c2c31 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_poller_metadata.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_poller_metadata.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "211", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "displayName": "hello", @@ -34,41 +34,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6a6b47b4-d890-4b09-8938-835dc8d6b3f8", + "apim-request-id": "5c7fee31-e9d5-4c2b-80cb-382cf321d2f2", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:10 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/950974dc-ed0d-4f1e-82b3-7e60ef9cdc71?api-version=2022-05-01", + "Date": "Mon, 10 Oct 2022 20:53:17 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/643bd1aa-d0a1-4f74-8a8a-0c50f97a309e?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "145" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/950974dc-ed0d-4f1e-82b3-7e60ef9cdc71?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/643bd1aa-d0a1-4f74-8a8a-0c50f97a309e?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "403669df-22e5-4713-a0de-6595faf26e1a", - "Content-Length": "544", + "apim-request-id": "e0da6f6a-8c28-4c92-ab6e-2d5a64b8c70b", + "Content-Length": "543", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:15 GMT", + "Date": "Mon, 10 Oct 2022 20:53:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "950974dc-ed0d-4f1e-82b3-7e60ef9cdc71", - "lastUpdatedDateTime": "2022-06-09T23:11:11Z", - "createdDateTime": "2022-06-09T23:11:10Z", - "expirationDateTime": "2022-06-10T23:11:10Z", + "jobId": "643bd1aa-d0a1-4f74-8a8a-0c50f97a309e", + "lastUpdateDateTime": "2022-10-10T20:53:20Z", + "createdDateTime": "2022-10-10T20:53:17Z", + "expirationDateTime": "2022-10-11T20:53:17Z", "status": "succeeded", "errors": [], "displayName": "hello", @@ -81,7 +81,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:11.0186134Z", + "lastUpdateDateTime": "2022-10-10T20:53:20.4070913Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_relations.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_relations.json index 5d2c7167fe8d..03d047a63115 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_relations.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_relations.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "238", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3e7c5163-20af-48e9-a40d-91b98267a29c", + "apim-request-id": "be991612-8b07-4a3b-b47f-c54e26fd50ba", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:10:43 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4751ff4d-41e4-4520-bc30-4f64025154a5?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:57:51 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4bcbedb5-9420-4a6e-8ce1-b24dbd704e47?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "145" + "x-envoy-upstream-service-time": "293" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4751ff4d-41e4-4520-bc30-4f64025154a5?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0e16d703-2177-4dc5-a473-f9757e9d842d?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3316ff2e-6773-4ab6-91c7-dad758a2a048", - "Content-Length": "3870", + "apim-request-id": "7c7bd74c-af5c-4f88-875f-0fc85a668bc5", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:47 GMT", + "Date": "Mon, 17 Oct 2022 18:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { - "jobId": "4751ff4d-41e4-4520-bc30-4f64025154a5", - "lastUpdatedDateTime": "2022-06-09T23:10:43Z", - "createdDateTime": "2022-06-09T23:10:43Z", - "expirationDateTime": "2022-06-10T23:10:43Z", + "jobId": "0e16d703-2177-4dc5-a473-f9757e9d842d", + "lastUpdateDateTime": "2022-10-17T18:57:52Z", + "createdDateTime": "2022-10-17T18:57:51Z", + "expirationDateTime": "2022-10-18T18:57:51Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,62 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:10:43.8648978Z", + "lastUpdateDateTime": "2022-10-17T18:57:52.5910072Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4bcbedb5-9420-4a6e-8ce1-b24dbd704e47?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "122cd347-5a90-4dc5-8f41-adc7dc518f4b", + "Content-Length": "3891", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:57:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "4bcbedb5-9420-4a6e-8ce1-b24dbd704e47", + "lastUpdateDateTime": "2022-10-17T18:57:53Z", + "createdDateTime": "2022-10-17T18:57:51Z", + "expirationDateTime": "2022-10-18T18:57:51Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "HealthcareLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-17T18:57:53.2212681Z", "status": "succeeded", "results": { "documents": [ @@ -413,6 +468,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version.json index 621e7c5946fc..1d91c8b22d19 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "393", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -54,41 +54,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e4cbd6cb-c27e-4f9a-bbba-c3d14fe89a17", + "apim-request-id": "d5d76f53-9fde-4310-b49a-3049b32715eb", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:38:44 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/028680bc-2400-4ba6-b651-1e2c9b1774d1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:55:58 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/296818bd-d3f6-42a6-b64f-c00d75e57100?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "371" + "x-envoy-upstream-service-time": "155" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/028680bc-2400-4ba6-b651-1e2c9b1774d1?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/296818bd-d3f6-42a6-b64f-c00d75e57100?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1889bd8-e1a4-455d-8348-98bc71f0f8c1", - "Content-Length": "1184", + "apim-request-id": "d35e4656-d099-413f-b50d-33d4969d3e30", + "Content-Length": "1183", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:38:48 GMT", + "Date": "Mon, 17 Oct 2022 18:56:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { - "jobId": "028680bc-2400-4ba6-b651-1e2c9b1774d1", - "lastUpdatedDateTime": "2022-06-09T23:38:45Z", - "createdDateTime": "2022-06-09T23:38:44Z", - "expirationDateTime": "2022-06-10T23:38:44Z", + "jobId": "296818bd-d3f6-42a6-b64f-c00d75e57100", + "lastUpdateDateTime": "2022-10-17T18:56:01Z", + "createdDateTime": "2022-10-17T18:55:59Z", + "expirationDateTime": "2022-10-18T18:55:59Z", "status": "succeeded", "errors": [], "tasks": { @@ -100,7 +100,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:38:45.3494015Z", + "lastUpdateDateTime": "2022-10-17T18:56:01.1671181Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version_v3_1.json index c9d38b8f7b82..85a923d0b3ea 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_show_stats_and_model_version_v3_1.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?model-version=2021-01-11\u0026stringIndexType=UnicodeCodePoint", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=UnicodeCodePoint", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "241", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -42,106 +42,133 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a546f3a9-c671-41b6-b9ca-1c2f9c28f7ef", - "Date": "Thu, 09 Jun 2022 23:09:33 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/86da95aa-bf8f-4dbf-a2c4-0ebbd61e9fd5", + "apim-request-id": "1b63d895-5cb4-4b5b-9baf-d13e5235afcf", + "Date": "Mon, 10 Oct 2022 20:55:28 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f20d1ff9-11b0-46fa-bb24-1eee79dba97a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "294" + "x-envoy-upstream-service-time": "298" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/86da95aa-bf8f-4dbf-a2c4-0ebbd61e9fd5?showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f20d1ff9-11b0-46fa-bb24-1eee79dba97a?showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 500, "ResponseHeaders": { - "apim-request-id": "a72b95cd-2d45-49e0-9e74-d5d8996f5303", + "apim-request-id": "faea4b30-6fcc-448f-b836-f83323baf30f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:38 GMT", + "Date": "Mon, 10 Oct 2022 20:55:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": { - "jobId": "86da95aa-bf8f-4dbf-a2c4-0ebbd61e9fd5", - "lastUpdateDateTime": "2022-06-09T23:09:34Z", - "createdDateTime": "2022-06-09T23:09:33Z", - "expirationDateTime": "2022-06-10T23:09:33Z", - "status": "succeeded", - "errors": [], - "results": { - "statistics": { - "documentsCount": 5, - "validDocumentsCount": 4, - "erroneousDocumentsCount": 1, - "transactionsCount": 4 + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "faea4b30-6fcc-448f-b836-f83323baf30f" }, - "documents": [ - { - "id": "56", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "relations": [], - "warnings": [] - }, - { - "id": "0", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "relations": [], - "warnings": [] - }, - { - "id": "19", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "relations": [], - "warnings": [] - }, - { - "id": "1", - "statistics": { - "charactersCount": 2, - "transactionsCount": 1 - }, - "entities": [], - "relations": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "22", - "error": { - "code": "InvalidArgument", - "message": "Invalid Document in request.", - "innererror": { - "code": "InvalidDocument", - "message": "Document text is empty." - } - } - } - ], - "modelVersion": "2022-03-01" + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f20d1ff9-11b0-46fa-bb24-1eee79dba97a?showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "b1779128-e923-4cfe-8c62-bec30769917b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 10 Oct 2022 20:55:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "b1779128-e923-4cfe-8c62-bec30769917b" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f20d1ff9-11b0-46fa-bb24-1eee79dba97a?showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "391bca30-62d3-4e3b-bd71-693289f72323", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 10 Oct 2022 20:55:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "391bca30-62d3-4e3b-bd71-693289f72323" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f20d1ff9-11b0-46fa-bb24-1eee79dba97a?showStats=True", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "627a94fa-fa2f-4af2-947d-a74fe95a8f42", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 10 Oct 2022 20:55:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "627a94fa-fa2f-4af2-947d-a74fe95a8f42" + }, + "message": "Internal server error" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_too_many_documents.json index fdeb660b430e..183719553946 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "1639", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -158,9 +158,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ac56bb29-7a40-492b-ad1f-d2d9274bd465", + "apim-request-id": "b33fc4b3-82cc-45ff-8f11-6b72306d5cb0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:26 GMT", + "Date": "Mon, 17 Oct 2022 18:55:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_user_agent.json index 978530e264a3..f199041d77a4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "206", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,41 +33,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8cd8a385-efe6-4455-893c-50f117f54fd6", + "apim-request-id": "b430f229-f302-40cf-94ad-77e13c045dfb", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:56 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ef7ba065-b9c1-422a-89ca-b387d507fca7?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:20 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1c1e95bd-7d26-4c13-bb75-003d7a9bbf7b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ef7ba065-b9c1-422a-89ca-b387d507fca7?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/1c1e95bd-7d26-4c13-bb75-003d7a9bbf7b?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51aadd25-6836-4ecf-979d-789c5fbe67cd", - "Content-Length": "521", + "apim-request-id": "16de7b42-64e8-421e-a5eb-8fc1f52a8135", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:10:01 GMT", + "Date": "Mon, 17 Oct 2022 18:56:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { - "jobId": "ef7ba065-b9c1-422a-89ca-b387d507fca7", - "lastUpdatedDateTime": "2022-06-09T23:09:56Z", - "createdDateTime": "2022-06-09T23:09:56Z", - "expirationDateTime": "2022-06-10T23:09:56Z", + "jobId": "1c1e95bd-7d26-4c13-bb75-003d7a9bbf7b", + "lastUpdateDateTime": "2022-10-17T18:56:23Z", + "createdDateTime": "2022-10-17T18:56:21Z", + "expirationDateTime": "2022-10-18T18:56:21Z", "status": "succeeded", "errors": [], "tasks": { @@ -79,7 +79,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:56.5184672Z", + "lastUpdateDateTime": "2022-10-17T18:56:23.1120187Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json index d7401897217f..e4b1848e65e7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "366", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,41 +43,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "34b550ed-5a03-4295-8c1e-8f0362067f26", + "apim-request-id": "afc35052-51b0-4893-a139-bfbec882c49c", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:09:39 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/66b4307b-5215-43ca-b3ac-3a27dd18b81d?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:56:04 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0e22d244-3c8c-4607-b64d-222cf84b518d?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "161" + "x-envoy-upstream-service-time": "134" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/66b4307b-5215-43ca-b3ac-3a27dd18b81d?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0e22d244-3c8c-4607-b64d-222cf84b518d?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b95f722-2757-45f2-96b8-967af7352b06", - "Content-Length": "629", + "apim-request-id": "6fcd3189-e232-4613-846a-eb1982922e2b", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:09:44 GMT", + "Date": "Mon, 17 Oct 2022 18:56:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { - "jobId": "66b4307b-5215-43ca-b3ac-3a27dd18b81d", - "lastUpdatedDateTime": "2022-06-09T23:09:40Z", - "createdDateTime": "2022-06-09T23:09:39Z", - "expirationDateTime": "2022-06-10T23:09:39Z", + "jobId": "0e22d244-3c8c-4607-b64d-222cf84b518d", + "lastUpdateDateTime": "2022-10-17T18:56:06Z", + "createdDateTime": "2022-10-17T18:56:04Z", + "expirationDateTime": "2022-10-18T18:56:04Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:09:40.5556581Z", + "lastUpdateDateTime": "2022-10-17T18:56:06.6894803Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_bad_model_version_error.json index fd9579f23bf1..ad787b4b9af3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "250", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,13 +33,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0dae30de-e002-4866-baff-51fad2f60bd9", + "apim-request-id": "8db38f1d-460c-4787-a1a6-687c446dee08", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:08 GMT", + "Date": "Mon, 17 Oct 2022 18:59:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "error": { @@ -47,7 +47,7 @@ "message": "Invalid parameter in request", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value bad is not supported for model-version parameter for job task type Healthcare. Supported values latest,2021-05-15." + "message": "Job task parameter value \u0027bad\u0027 is not supported for model-version parameter for job task type Healthcare. Supported values latest, 2021-05-15, 2022-03-01, 2022-08-15-preview." } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_cancellation.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_cancellation.json index 9e72afd93b04..63ff6870da84 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_cancellation.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_cancellation.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "101281", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -152,117 +152,151 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b829e55e-6bb7-4272-ac1a-a693f0eb120f", + "apim-request-id": "4b04fa62-be22-4d8e-9116-2bab131ee54d", "Content-Length": "0", - "Date": "Thu, 14 Jul 2022 20:55:23 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1d75af4-2dfe-49ee-8a3f-f59d2d227b37?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:24 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "939" + "x-envoy-upstream-service-time": "870" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1d75af4-2dfe-49ee-8a3f-f59d2d227b37?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602:cancel?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "0", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ddb19dc4-38e3-458b-96e8-7f2d259896da", + "Content-Length": "0", + "Date": "Mon, 17 Oct 2022 18:59:24 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 500, "ResponseHeaders": { - "apim-request-id": "568e949d-1c44-4df4-9a36-e49dd03c9292", - "Content-Length": "283", + "apim-request-id": "d29cab2e-8cc5-475b-956e-549e4445f7ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 14 Jul 2022 20:55:23 GMT", + "Date": "Mon, 17 Oct 2022 18:59:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "c1d75af4-2dfe-49ee-8a3f-f59d2d227b37", - "lastUpdatedDateTime": "2022-07-14T20:55:24Z", - "createdDateTime": "2022-07-14T20:55:23Z", - "expirationDateTime": "2022-07-15T20:55:23Z", - "status": "notStarted", - "errors": [], - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1, - "items": [] + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "d29cab2e-8cc5-475b-956e-549e4445f7ff" + }, + "message": "Internal server error" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1d75af4-2dfe-49ee-8a3f-f59d2d227b37:cancel?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "Content-Length": "0", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 500, "ResponseHeaders": { - "apim-request-id": "10d76cc9-760f-4768-8fca-d65c6bb38926", - "Content-Length": "0", - "Date": "Thu, 14 Jul 2022 20:55:23 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1d75af4-2dfe-49ee-8a3f-f59d2d227b37?api-version=2022-05-01", + "apim-request-id": "4c917707-664f-4e74-9d01-6848c8d46eb2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:59:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "15" }, - "ResponseBody": null + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "4c917707-664f-4e74-9d01-6848c8d46eb2" + }, + "message": "Internal server error" + } + } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1d75af4-2dfe-49ee-8a3f-f59d2d227b37?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 500, "ResponseHeaders": { - "apim-request-id": "b36b0855-3296-4253-932f-6b7b749bfc75", - "Content-Length": "464", + "apim-request-id": "bc44bdba-d823-4162-a48c-b46bbf6b9262", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 14 Jul 2022 20:55:28 GMT", + "Date": "Mon, 17 Oct 2022 18:59:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { - "jobId": "c1d75af4-2dfe-49ee-8a3f-f59d2d227b37", - "lastUpdatedDateTime": "2022-07-14T20:55:24Z", - "createdDateTime": "2022-07-14T20:55:23Z", - "expirationDateTime": "2022-07-15T20:55:23Z", - "status": "cancelled", - "errors": [], - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 0, - "total": 1, - "items": [ - { - "kind": "HealthcareLROResults", - "taskName": "0", - "lastUpdateDateTime": "2022-07-14T20:55:24.2659665Z", - "status": "cancelled", - "results": { - "documents": [], - "errors": [], - "modelVersion": "latest" - } - } - ] + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "bc44bdba-d823-4162-a48c-b46bbf6b9262" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7be15d3d-e9da-45f1-bee1-df1d62c1a602?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "6d35ffdf-7ce9-44ae-bd0b-2266b7cecb0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 17 Oct 2022 18:59:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "6d35ffdf-7ce9-44ae-bd0b-2266b7cecb0a" + }, + "message": "Internal server error" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json index 57343a3dbece..8ac852a0edc8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_default_string_index_type_is_UnicodeCodePoint.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,40 +21,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7153110f-bd73-44ab-a806-9e8370b6db9a", - "Date": "Thu, 09 Jun 2022 23:12:31 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b1841e9d-0439-4fd0-9a53-30a571d80bdd", + "apim-request-id": "7f66cc27-5bc7-49c9-a45b-e830ade59e79", + "Date": "Mon, 17 Oct 2022 18:59:35 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/90dad035-0c77-421a-b408-63c5ee5d813c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b1841e9d-0439-4fd0-9a53-30a571d80bdd", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/90dad035-0c77-421a-b408-63c5ee5d813c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0e0e21a-da20-4e1a-9011-a9c2a2d9daf0", + "apim-request-id": "bec31bc1-2d31-4685-b11e-3feac1455aad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:36 GMT", + "Date": "Mon, 17 Oct 2022 18:59:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "32" }, "ResponseBody": { - "jobId": "b1841e9d-0439-4fd0-9a53-30a571d80bdd", - "lastUpdateDateTime": "2022-06-09T23:12:32Z", - "createdDateTime": "2022-06-09T23:12:31Z", - "expirationDateTime": "2022-06-10T23:12:31Z", + "jobId": "90dad035-0c77-421a-b408-63c5ee5d813c", + "lastUpdateDateTime": "2022-10-17T18:59:37Z", + "createdDateTime": "2022-10-17T18:59:35Z", + "expirationDateTime": "2022-10-18T18:59:35Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_disable_service_logs.json index d1d625b223af..d6061090d08b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_disable_service_logs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "231", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -33,40 +33,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "48a79b0f-5c18-4d78-9bc5-45516a32e935", + "apim-request-id": "68c04b0f-c6b7-4e4f-bfcf-3f620967ddf9", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:58 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8278ecb7-afff-4cf0-86d8-372b152bc333?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:00:02 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0a4c71c9-370a-4900-a629-a2724fddb9ff?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8278ecb7-afff-4cf0-86d8-372b152bc333?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/0a4c71c9-370a-4900-a629-a2724fddb9ff?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3eed9a93-e6ee-4ed5-b94b-87483e4e0f67", - "Content-Length": "521", + "apim-request-id": "75090777-5ec3-422b-88af-b5478b45b0f2", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:13:03 GMT", + "Date": "Mon, 17 Oct 2022 19:00:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { - "jobId": "8278ecb7-afff-4cf0-86d8-372b152bc333", - "lastUpdatedDateTime": "2022-06-09T23:12:58Z", - "createdDateTime": "2022-06-09T23:12:58Z", - "expirationDateTime": "2022-06-10T23:12:58Z", + "jobId": "0a4c71c9-370a-4900-a629-a2724fddb9ff", + "lastUpdateDateTime": "2022-10-17T19:00:05Z", + "createdDateTime": "2022-10-17T19:00:03Z", + "expirationDateTime": "2022-10-18T19:00:03Z", "status": "succeeded", "errors": [], "tasks": { @@ -78,7 +78,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:58.8482341Z", + "lastUpdateDateTime": "2022-10-17T19:00:05.0820787Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_document_errors.json index 51965e177414..57061f4fc398 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5434", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "80d24fdc-9168-4364-b3ab-3e5944c1a652", + "apim-request-id": "b0c8cb83-3cbc-4532-a9c6-c5075d7b0ae9", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:08 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/76fd8305-3554-40cb-81ed-669e4674b876?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:11 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/269f231c-4313-4d0d-ad5f-24a785ebd8a7?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/76fd8305-3554-40cb-81ed-669e4674b876?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/269f231c-4313-4d0d-ad5f-24a785ebd8a7?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e6d83f3-4019-44da-bcc9-68b40b88b191", - "Content-Length": "1089", + "apim-request-id": "2f2be3b5-4068-43bd-ba6c-c55fa4916f10", + "Content-Length": "1103", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:13 GMT", + "Date": "Mon, 17 Oct 2022 18:59:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "76fd8305-3554-40cb-81ed-669e4674b876", - "lastUpdatedDateTime": "2022-06-09T23:12:11Z", - "createdDateTime": "2022-06-09T23:12:09Z", - "expirationDateTime": "2022-06-10T23:12:09Z", + "jobId": "269f231c-4313-4d0d-ad5f-24a785ebd8a7", + "lastUpdateDateTime": "2022-10-17T18:59:16Z", + "createdDateTime": "2022-10-17T18:59:12Z", + "expirationDateTime": "2022-10-18T18:59:12Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:11.0828479Z", + "lastUpdateDateTime": "2022-10-17T18:59:16.8972902Z", "status": "succeeded", "results": { "documents": [ @@ -98,7 +98,7 @@ "warnings": [ { "code": "DocumentTruncated", - "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + "message": "Document is large and must be split to be processed; relations across splits may not be caught by the model" } ] } @@ -122,7 +122,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027english\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_duplicate_ids_error.json index 434f9968dc1a..3d0195d36ef3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "276", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -37,13 +37,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "95d7cfb3-9583-464c-ad9a-444e326611ee", + "apim-request-id": "62100168-92ae-432a-866c-2fef4574ae31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:13 GMT", + "Date": "Mon, 17 Oct 2022 18:59:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_explicit_set_string_index_type.json index 5a170b0c8721..43cd1cd2ba81 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_explicit_set_string_index_type.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,40 +21,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f7183ab8-9f77-4317-8094-d5a5aed2e09b", - "Date": "Thu, 09 Jun 2022 23:12:36 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/072741bd-9dd8-425c-a581-5e2b3840cfd3", + "apim-request-id": "fac42aad-12c4-4906-9551-fbe3d6cc4895", + "Date": "Mon, 17 Oct 2022 18:59:40 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/c0de7396-fff3-491b-bd9d-3ec9c6348534", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "297" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/072741bd-9dd8-425c-a581-5e2b3840cfd3", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/c0de7396-fff3-491b-bd9d-3ec9c6348534", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf9b8125-5124-4b23-9c94-264452fdf392", + "apim-request-id": "21beea91-4296-4e6b-8c67-a6ec3e88ea75", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:41 GMT", + "Date": "Mon, 17 Oct 2022 18:59:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "072741bd-9dd8-425c-a581-5e2b3840cfd3", - "lastUpdateDateTime": "2022-06-09T23:12:37Z", - "createdDateTime": "2022-06-09T23:12:36Z", - "expirationDateTime": "2022-06-10T23:12:36Z", + "jobId": "c0de7396-fff3-491b-bd9d-3ec9c6348534", + "lastUpdateDateTime": "2022-10-17T18:59:43Z", + "createdDateTime": "2022-10-17T18:59:40Z", + "expirationDateTime": "2022-10-18T18:59:40Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_assertion.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_assertion.json index 1bf7d3265b47..0edee376e9ee 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_assertion.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_assertion.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a10875a4-29a8-41d9-b951-c2652691bcd9", + "apim-request-id": "19329651-a64d-4e54-9502-1b966571ac2a", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:53 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/df7715da-1f39-4ca6-9c13-aea0af78550a?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:57 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/74649998-c94c-4ba7-ac22-0ede11d50233?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/df7715da-1f39-4ca6-9c13-aea0af78550a?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/74649998-c94c-4ba7-ac22-0ede11d50233?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12ee4e30-5a8a-4a6c-9e26-4abd060bbcb0", - "Content-Length": "7517", + "apim-request-id": "6dc7b8a4-296d-498c-b5ac-3ae909f37e62", + "Content-Length": "7516", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:58 GMT", + "Date": "Mon, 17 Oct 2022 19:00:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { - "jobId": "df7715da-1f39-4ca6-9c13-aea0af78550a", - "lastUpdatedDateTime": "2022-06-09T23:12:53Z", - "createdDateTime": "2022-06-09T23:12:53Z", - "expirationDateTime": "2022-06-10T23:12:53Z", + "jobId": "74649998-c94c-4ba7-ac22-0ede11d50233", + "lastUpdateDateTime": "2022-10-17T18:59:59Z", + "createdDateTime": "2022-10-17T18:59:57Z", + "expirationDateTime": "2022-10-18T18:59:57Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:53.7837351Z", + "lastUpdateDateTime": "2022-10-17T18:59:59.2645225Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_continuation_token.json index 589da71780c1..5fda24a4967e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_continuation_token.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "519", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -47,40 +47,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "95957be9-7b20-493c-af74-37a711a06be7", + "apim-request-id": "99b83003-e67b-4fc8-8290-2208a2d162c6", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:13:03 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/db95227d-bc9c-49cd-b8f8-2c7cb67383ab?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:00:08 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b51f088c-64e5-48d1-a421-f3dc1c6e3feb?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/db95227d-bc9c-49cd-b8f8-2c7cb67383ab?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b51f088c-64e5-48d1-a421-f3dc1c6e3feb?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e11bdcf-3565-4c50-be92-9cc517047d4e", - "Content-Length": "13582", + "apim-request-id": "03571ef7-9372-4a13-8b49-2caeaa9fd981", + "Content-Length": "13628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:13:08 GMT", + "Date": "Mon, 17 Oct 2022 19:00:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { - "jobId": "db95227d-bc9c-49cd-b8f8-2c7cb67383ab", - "lastUpdatedDateTime": "2022-06-09T23:13:05Z", - "createdDateTime": "2022-06-09T23:13:04Z", - "expirationDateTime": "2022-06-10T23:13:04Z", + "jobId": "b51f088c-64e5-48d1-a421-f3dc1c6e3feb", + "lastUpdateDateTime": "2022-10-17T19:00:10Z", + "createdDateTime": "2022-10-17T19:00:08Z", + "expirationDateTime": "2022-10-18T19:00:08Z", "status": "succeeded", "errors": [], "tasks": { @@ -92,7 +92,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:13:04.99904Z", + "lastUpdateDateTime": "2022-10-17T19:00:10.8774379Z", "status": "succeeded", "results": { "statistics": { @@ -1033,6 +1033,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { @@ -1382,6 +1383,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { @@ -1419,29 +1421,29 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/db95227d-bc9c-49cd-b8f8-2c7cb67383ab?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b51f088c-64e5-48d1-a421-f3dc1c6e3feb?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa254af6-0579-40b6-8893-c9948ce5bf2f", - "Content-Length": "13582", + "apim-request-id": "597c69c3-d0d8-4a95-b5ad-d7cbad94f3ab", + "Content-Length": "13628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:13:14 GMT", + "Date": "Mon, 17 Oct 2022 19:00:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { - "jobId": "db95227d-bc9c-49cd-b8f8-2c7cb67383ab", - "lastUpdatedDateTime": "2022-06-09T23:13:05Z", - "createdDateTime": "2022-06-09T23:13:04Z", - "expirationDateTime": "2022-06-10T23:13:04Z", + "jobId": "b51f088c-64e5-48d1-a421-f3dc1c6e3feb", + "lastUpdateDateTime": "2022-10-17T19:00:10Z", + "createdDateTime": "2022-10-17T19:00:08Z", + "expirationDateTime": "2022-10-18T19:00:08Z", "status": "succeeded", "errors": [], "tasks": { @@ -1453,7 +1455,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:13:04.99904Z", + "lastUpdateDateTime": "2022-10-17T19:00:10.8774379Z", "status": "succeeded", "results": { "statistics": { @@ -2394,6 +2396,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { @@ -2743,6 +2746,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_fhir_bundle.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_fhir_bundle.json new file mode 100644 index 000000000000..bd49c1cf1e5c --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_healthcare_fhir_bundle.json @@ -0,0 +1,1611 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "345", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Baby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too.", + "language": "en" + } + ] + }, + "tasks": [ + { + "taskName": "0", + "kind": "Healthcare", + "parameters": { + "fhirVersion": "4.0.1", + "documentType": "ProgressNote", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "aecac4da-551c-4bf5-aa94-0c209c8e5396", + "Content-Length": "0", + "Date": "Tue, 11 Oct 2022 22:26:50 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/cb4c3387-c7d5-4486-8a31-76dff54e2733?api-version=2022-10-01-preview", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "309" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/cb4c3387-c7d5-4486-8a31-76dff54e2733?api-version=2022-10-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2dcc0a0-ae29-4afc-9c48-56a779fd2cfc", + "Content-Length": "21067", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 11 Oct 2022 22:26:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "328" + }, + "ResponseBody": { + "jobId": "cb4c3387-c7d5-4486-8a31-76dff54e2733", + "lastUpdateDateTime": "2022-10-11T22:26:54Z", + "createdDateTime": "2022-10-11T22:26:49Z", + "expirationDateTime": "2022-10-12T22:26:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "items": [ + { + "kind": "HealthcareLROResults", + "taskName": "0", + "lastUpdateDateTime": "2022-10-11T22:26:54.0088255Z", + "status": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "Baby", + "category": "Age", + "confidenceScore": 0.94, + "name": "Infant", + "links": [ + { + "dataSource": "UMLS", + "id": "C0021270" + }, + { + "dataSource": "AOD", + "id": "0000005273" + }, + { + "dataSource": "CCPSS", + "id": "0030805" + }, + { + "dataSource": "CHV", + "id": "0000006675" + }, + { + "dataSource": "DXP", + "id": "U002089" + }, + { + "dataSource": "LCH", + "id": "U002421" + }, + { + "dataSource": "LCH_NW", + "id": "sh85066022" + }, + { + "dataSource": "LNC", + "id": "LA19747-7" + }, + { + "dataSource": "MDR", + "id": "10021731" + }, + { + "dataSource": "MSH", + "id": "D007223" + }, + { + "dataSource": "NCI", + "id": "C27956" + }, + { + "dataSource": "NCI_FDA", + "id": "C27956" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27956" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "133931009" + } + ] + }, + { + "offset": 24, + "length": 10, + "text": "Meningitis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negativePossible" + }, + "name": "Meningitis", + "links": [ + { + "dataSource": "UMLS", + "id": "C0025289" + }, + { + "dataSource": "AOD", + "id": "0000006185" + }, + { + "dataSource": "BI", + "id": "BI00546" + }, + { + "dataSource": "CCPSS", + "id": "1018016" + }, + { + "dataSource": "CCSR_10", + "id": "NVS001" + }, + { + "dataSource": "CCSR_ICD10CM", + "id": "NVS001" + }, + { + "dataSource": "CHV", + "id": "0000007932" + }, + { + "dataSource": "COSTAR", + "id": "478" + }, + { + "dataSource": "CSP", + "id": "2042-5301" + }, + { + "dataSource": "CST", + "id": "MENINGITIS" + }, + { + "dataSource": "DXP", + "id": "U002543" + }, + { + "dataSource": "HPO", + "id": "HP:0001287" + }, + { + "dataSource": "ICD10", + "id": "G03.9" + }, + { + "dataSource": "ICD10AM", + "id": "G03.9" + }, + { + "dataSource": "ICD10CM", + "id": "G03.9" + }, + { + "dataSource": "ICD9CM", + "id": "322.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU048434" + }, + { + "dataSource": "ICPC2P", + "id": "N71002" + }, + { + "dataSource": "LCH", + "id": "U002901" + }, + { + "dataSource": "LCH_NW", + "id": "sh85083562" + }, + { + "dataSource": "LNC", + "id": "LP20756-0" + }, + { + "dataSource": "MDR", + "id": "10027199" + }, + { + "dataSource": "MEDCIN", + "id": "31192" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "324" + }, + { + "dataSource": "MSH", + "id": "D008581" + }, + { + "dataSource": "NANDA-I", + "id": "02899" + }, + { + "dataSource": "NCI", + "id": "C26828" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C26828" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11458" + }, + { + "dataSource": "NCI_FDA", + "id": "2389" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000471780" + }, + { + "dataSource": "NCI_NICHD", + "id": "C26828" + }, + { + "dataSource": "NCI_caDSR", + "id": "C26828" + }, + { + "dataSource": "OMIM", + "id": "MTHU005994" + }, + { + "dataSource": "PSY", + "id": "30660" + }, + { + "dataSource": "RCD", + "id": "X000H" + }, + { + "dataSource": "SNM", + "id": "M-40000" + }, + { + "dataSource": "SNMI", + "id": "DA-10010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "7180009" + }, + { + "dataSource": "WHO", + "id": "0955" + } + ] + }, + { + "offset": 47, + "length": 5, + "text": "fever", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "name": "Fever", + "links": [ + { + "dataSource": "UMLS", + "id": "C0015967" + }, + { + "dataSource": "AIR", + "id": "FEVER" + }, + { + "dataSource": "AOD", + "id": "0000004396" + }, + { + "dataSource": "BI", + "id": "BI00751" + }, + { + "dataSource": "CCC", + "id": "K25.2" + }, + { + "dataSource": "CCPSS", + "id": "1017166" + }, + { + "dataSource": "CCSR_10", + "id": "SYM002" + }, + { + "dataSource": "CCSR_ICD10CM", + "id": "SYM002" + }, + { + "dataSource": "CHV", + "id": "0000005010" + }, + { + "dataSource": "COSTAR", + "id": "300" + }, + { + "dataSource": "CPM", + "id": "65287" + }, + { + "dataSource": "CSP", + "id": "2871-4310" + }, + { + "dataSource": "CST", + "id": "FEVER" + }, + { + "dataSource": "DXP", + "id": "U001483" + }, + { + "dataSource": "GO", + "id": "GO:0001660" + }, + { + "dataSource": "HPO", + "id": "HP:0001945" + }, + { + "dataSource": "ICD10", + "id": "R50.9" + }, + { + "dataSource": "ICD10AM", + "id": "R50.9" + }, + { + "dataSource": "ICD10CM", + "id": "R50.9" + }, + { + "dataSource": "ICD9CM", + "id": "780.60" + }, + { + "dataSource": "ICNP", + "id": "10041539" + }, + { + "dataSource": "ICPC", + "id": "A03" + }, + { + "dataSource": "ICPC2EENG", + "id": "A03" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU041751" + }, + { + "dataSource": "ICPC2P", + "id": "A03002" + }, + { + "dataSource": "LCH", + "id": "U001776" + }, + { + "dataSource": "LCH_NW", + "id": "sh85047994" + }, + { + "dataSource": "LNC", + "id": "MTHU013518" + }, + { + "dataSource": "MDR", + "id": "10005911" + }, + { + "dataSource": "MEDCIN", + "id": "6005" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "511" + }, + { + "dataSource": "MSH", + "id": "D005334" + }, + { + "dataSource": "MTHICD9", + "id": "780.60" + }, + { + "dataSource": "NANDA-I", + "id": "01128" + }, + { + "dataSource": "NCI", + "id": "C3038" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E11102" + }, + { + "dataSource": "NCI_FDA", + "id": "1858" + }, + { + "dataSource": "NCI_GDC", + "id": "C3038" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3038" + }, + { + "dataSource": "NCI_caDSR", + "id": "C3038" + }, + { + "dataSource": "NOC", + "id": "070307" + }, + { + "dataSource": "OMIM", + "id": "MTHU005439" + }, + { + "dataSource": "OMS", + "id": "50.03" + }, + { + "dataSource": "PCDS", + "id": "PRB_11020.02" + }, + { + "dataSource": "PDQ", + "id": "CDR0000775882" + }, + { + "dataSource": "PSY", + "id": "23840" + }, + { + "dataSource": "QMR", + "id": "Q0200115" + }, + { + "dataSource": "RCD", + "id": "X76EI" + }, + { + "dataSource": "SNM", + "id": "F-03003" + }, + { + "dataSource": "SNMI", + "id": "F-03003" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "386661006" + }, + { + "dataSource": "WHO", + "id": "0725" + } + ] + }, + { + "offset": 60, + "length": 6, + "text": "mother", + "category": "FamilyRelation", + "confidenceScore": 0.99, + "name": "Mother (person)", + "links": [ + { + "dataSource": "UMLS", + "id": "C0026591" + }, + { + "dataSource": "AOD", + "id": "0000027173" + }, + { + "dataSource": "CCPSS", + "id": "U000286" + }, + { + "dataSource": "CHV", + "id": "0000008266" + }, + { + "dataSource": "CSP", + "id": "1124-5492" + }, + { + "dataSource": "HL7V3.0", + "id": "MTH" + }, + { + "dataSource": "LCH", + "id": "U003028" + }, + { + "dataSource": "LCH_NW", + "id": "sh85087526" + }, + { + "dataSource": "LNC", + "id": "LA10417-6" + }, + { + "dataSource": "MSH", + "id": "D009035" + }, + { + "dataSource": "NCI", + "id": "C25189" + }, + { + "dataSource": "NCI_CDISC", + "id": "C25189" + }, + { + "dataSource": "NCI_GDC", + "id": "C25189" + }, + { + "dataSource": "NCI_caDSR", + "id": "C25189" + }, + { + "dataSource": "PSY", + "id": "32140" + }, + { + "dataSource": "RCD", + "id": "X78ym" + }, + { + "dataSource": "SNMI", + "id": "S-10120" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "72705000" + } + ] + }, + { + "offset": 77, + "length": 10, + "text": "Penicillin", + "category": "MedicationName", + "confidenceScore": 0.84, + "assertion": { + "certainty": "neutralPossible" + }, + "name": "penicillins", + "links": [ + { + "dataSource": "UMLS", + "id": "C0030842" + }, + { + "dataSource": "AOD", + "id": "0000019206" + }, + { + "dataSource": "ATC", + "id": "J01C" + }, + { + "dataSource": "CCPSS", + "id": "0014106" + }, + { + "dataSource": "CHV", + "id": "0000009423" + }, + { + "dataSource": "CSP", + "id": "0199-8025" + }, + { + "dataSource": "GS", + "id": "4011" + }, + { + "dataSource": "LCH", + "id": "U003521" + }, + { + "dataSource": "LCH_NW", + "id": "sh85099402" + }, + { + "dataSource": "LNC", + "id": "LP14319-5" + }, + { + "dataSource": "MEDCIN", + "id": "40319" + }, + { + "dataSource": "MMSL", + "id": "d00116" + }, + { + "dataSource": "MSH", + "id": "D010406" + }, + { + "dataSource": "NCI", + "id": "C1500" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0402815" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000045296" + }, + { + "dataSource": "NDDF", + "id": "016121" + }, + { + "dataSource": "PSY", + "id": "37190" + }, + { + "dataSource": "RCD", + "id": "x009C" + }, + { + "dataSource": "SNM", + "id": "E-7260" + }, + { + "dataSource": "SNMI", + "id": "C-54000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "764146007" + }, + { + "dataSource": "VANDF", + "id": "4019880" + } + ] + }, + { + "offset": 96, + "length": 4, + "text": "baby", + "category": "FamilyRelation", + "confidenceScore": 1.0, + "name": "Infant", + "links": [ + { + "dataSource": "UMLS", + "id": "C0021270" + }, + { + "dataSource": "AOD", + "id": "0000005273" + }, + { + "dataSource": "CCPSS", + "id": "0030805" + }, + { + "dataSource": "CHV", + "id": "0000006675" + }, + { + "dataSource": "DXP", + "id": "U002089" + }, + { + "dataSource": "LCH", + "id": "U002421" + }, + { + "dataSource": "LCH_NW", + "id": "sh85066022" + }, + { + "dataSource": "LNC", + "id": "LA19747-7" + }, + { + "dataSource": "MDR", + "id": "10021731" + }, + { + "dataSource": "MSH", + "id": "D007223" + }, + { + "dataSource": "NCI", + "id": "C27956" + }, + { + "dataSource": "NCI_FDA", + "id": "C27956" + }, + { + "dataSource": "NCI_NICHD", + "id": "C27956" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "133931009" + } + ] + } + ], + "relations": [], + "warnings": [], + "fhirBundle": { + "resourceType": "Bundle", + "id": "626160f4-50cd-4550-8d95-a66699de7ea2", + "meta": { + "profile": [ + "http://hl7.org/fhir/4.0.1/StructureDefinition/Bundle" + ] + }, + "identifier": { + "system": "urn:ietf:rfc:3986", + "value": "urn:uuid:626160f4-50cd-4550-8d95-a66699de7ea2" + }, + "type": "document", + "entry": [ + { + "fullUrl": "Composition/98a248fd-36cf-4f05-b4a9-3b8ace7e0d0b", + "resource": { + "resourceType": "Composition", + "id": "98a248fd-36cf-4f05-b4a9-3b8ace7e0d0b", + "status": "final", + "type": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11526-1", + "display": "Pathology study" + } + ], + "text": "Pathology study" + }, + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "type": "Encounter", + "display": "unknown" + }, + "date": "2022-10-11", + "author": [ + { + "reference": "Practitioner/d3449e96-bd5b-476a-8973-23fa1411a8aa", + "type": "Practitioner", + "display": "Unknown" + } + ], + "title": "Pathology study", + "section": [ + { + "title": "General", + "code": { + "coding": [ + { + "system": "", + "display": "Unrecognized Section" + } + ], + "text": "General" + }, + "text": { + "status": "additional", + "div": "\u003Cdiv\u003E\r\n\t\t\t\t\t\t\t\u003Ch1\u003EGeneral\u003C/h1\u003E\r\n\t\t\t\t\t\t\t\u003Cp\u003EBaby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too.\u003C/p\u003E\r\n\t\t\t\t\t\u003C/div\u003E" + }, + "entry": [ + { + "reference": "List/eec7ae04-d105-4a82-a553-8b9bb8d3ec92", + "type": "List", + "display": "General" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/d3449e96-bd5b-476a-8973-23fa1411a8aa", + "resource": { + "resourceType": "Practitioner", + "id": "d3449e96-bd5b-476a-8973-23fa1411a8aa", + "name": [ + { + "text": "Unknown", + "family": "Unknown" + } + ] + } + }, + { + "fullUrl": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "resource": { + "resourceType": "Patient", + "id": "4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "gender": "unknown" + } + }, + { + "fullUrl": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "resource": { + "resourceType": "Encounter", + "id": "dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "display": "unknown" + }, + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "period": { + "start": "2022-10-11", + "end": "2022-10-11" + } + } + }, + { + "fullUrl": "Condition/8bca442b-a788-4e9e-99e4-ce79a7116e89", + "resource": { + "resourceType": "Condition", + "id": "8bca442b-a788-4e9e-99e4-ce79a7116e89", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition" + ] + }, + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 24 + }, + { + "url": "length", + "valueInteger": 10 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "verificationStatus": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", + "code": "unconfirmed", + "display": "Unconfirmed" + } + ], + "text": "Unconfirmed" + }, + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-category", + "code": "encounter-diagnosis", + "display": "Encounter Diagnosis" + } + ], + "text": "Encounter Diagnosis" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0025289", + "display": "Meningitis" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000006185" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00546" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1018016" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_10", + "code": "NVS001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_icd10cm", + "code": "NVS001" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000007932" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "478" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2042-5301" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "MENINGITIS" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U002543" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0001287" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G03.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "322.9" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU048434" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "N71002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U002901" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85083562" + }, + { + "system": "http://loinc.org", + "code": "LP20756-0" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10027199" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "31192" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "324" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D008581" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "02899" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cptac", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E11458" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "2389" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000471780" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C26828" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU005994" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "30660" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "X000H" + }, + { + "system": "http://snomed.info/sct", + "code": "M-40000" + }, + { + "system": "http://snomed.info/sct", + "code": "DA-10010" + }, + { + "system": "http://snomed.info/sct", + "code": "7180009" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0955" + } + ], + "text": "Meningitis" + }, + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "type": "Encounter", + "display": "unknown" + } + } + }, + { + "fullUrl": "Observation/953afa79-6e99-429b-94bc-731aa04f14eb", + "resource": { + "resourceType": "Observation", + "id": "953afa79-6e99-429b-94bc-731aa04f14eb", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 47 + }, + { + "url": "length", + "valueInteger": 5 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "final", + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "exam", + "display": "Exam" + } + ], + "text": "Exam" + } + ], + "code": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0015967", + "display": "Fever" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/air", + "code": "FEVER" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000004396" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/bi", + "code": "BI00751" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccc", + "code": "K25.2" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "1017166" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_10", + "code": "SYM002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccsr_icd10cm", + "code": "SYM002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000005010" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/costar", + "code": "300" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cpm", + "code": "65287" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "2871-4310" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/cst", + "code": "FEVER" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/dxp", + "code": "U001483" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/go", + "code": "GO:0001660" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/hpo", + "code": "HP:0001945" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-am", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R50.9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-9-cm", + "code": "780.60" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icnp", + "code": "10041539" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icpc", + "code": "A03" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/icpc2eeng", + "code": "A03" + }, + { + "system": "http://hl7.org/fhir/sid/icpc2icd10eng", + "code": "MTHU041751" + }, + { + "system": "http://hl7.org/fhir/sid/icpc-2p", + "code": "A03002" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U001776" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85047994" + }, + { + "system": "http://loinc.org", + "code": "MTHU013518" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mdr", + "code": "10005911" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "6005" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medlineplus", + "code": "511" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D005334" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mthicd9", + "code": "780.60" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nanda-i", + "code": "01128" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_ctcae", + "code": "E11102" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_fda", + "code": "1858" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_gdc", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000450108" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nichd", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_cadsr", + "code": "C3038" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/noc", + "code": "070307" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/omim", + "code": "MTHU005439" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/oms", + "code": "50.03" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pcds", + "code": "PRB_11020.02" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/pdq", + "code": "CDR0000775882" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "23840" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/qmr", + "code": "Q0200115" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "X76EI" + }, + { + "system": "http://snomed.info/sct", + "code": "F-03003" + }, + { + "system": "http://snomed.info/sct", + "code": "F-03003" + }, + { + "system": "http://snomed.info/sct", + "code": "386661006" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/who", + "code": "0725" + } + ], + "text": "fever" + }, + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "type": "Encounter", + "display": "unknown" + }, + "interpretation": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "code": "POS", + "display": "Positive" + } + ], + "text": "Positive" + } + ] + } + }, + { + "fullUrl": "MedicationStatement/978780cb-b397-4875-967b-085bb12df52d", + "resource": { + "resourceType": "MedicationStatement", + "id": "978780cb-b397-4875-967b-085bb12df52d", + "extension": [ + { + "extension": [ + { + "url": "offset", + "valueInteger": 77 + }, + { + "url": "length", + "valueInteger": 10 + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/derivation-reference" + } + ], + "status": "unknown", + "medicationCodeableConcept": { + "coding": [ + { + "system": "http://www.nlm.nih.gov/research/umls", + "code": "C0030842", + "display": "penicillins" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/aod", + "code": "0000019206" + }, + { + "system": "http://www.whocc.no/atc", + "code": "J01C" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/ccpss", + "code": "0014106" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/chv", + "code": "0000009423" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/csp", + "code": "0199-8025" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/gs", + "code": "4011" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch", + "code": "U003521" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/lch_nw", + "code": "sh85099402" + }, + { + "system": "http://loinc.org", + "code": "LP14319-5" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/medcin", + "code": "40319" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/mmsl", + "code": "d00116" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/msh", + "code": "D010406" + }, + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1500" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_dtp", + "code": "NSC0402815" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nci_nci-gloss", + "code": "CDR0000045296" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/nddf", + "code": "016121" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/psy", + "code": "37190" + }, + { + "system": "http://www.nlm.nih.gov/research/umls/rcd", + "code": "x009C" + }, + { + "system": "http://snomed.info/sct", + "code": "E-7260" + }, + { + "system": "http://snomed.info/sct", + "code": "C-54000" + }, + { + "system": "http://snomed.info/sct", + "code": "764146007" + }, + { + "system": "http://hl7.org/fhir/ndfrt", + "code": "4019880" + } + ], + "text": "Penicillin" + }, + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "context": { + "reference": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "type": "Encounter", + "display": "unknown" + } + } + }, + { + "fullUrl": "List/eec7ae04-d105-4a82-a553-8b9bb8d3ec92", + "resource": { + "resourceType": "List", + "id": "eec7ae04-d105-4a82-a553-8b9bb8d3ec92", + "status": "current", + "mode": "snapshot", + "title": "General", + "subject": { + "reference": "Patient/4d9ecba5-afaf-4666-a96d-0988aa1d8ca6", + "type": "Patient" + }, + "encounter": { + "reference": "Encounter/dbff05f6-ebc5-4a3d-a92d-ad2b7fc7a2e5", + "type": "Encounter", + "display": "unknown" + }, + "entry": [ + { + "item": { + "reference": "Condition/8bca442b-a788-4e9e-99e4-ce79a7116e89", + "type": "Condition", + "display": "Meningitis" + } + }, + { + "item": { + "reference": "Observation/953afa79-6e99-429b-94bc-731aa04f14eb", + "type": "Observation", + "display": "fever" + } + }, + { + "item": { + "reference": "MedicationStatement/978780cb-b397-4875-967b-085bb12df52d", + "type": "MedicationStatement", + "display": "Penicillin" + } + } + ] + } + } + ] + } + } + ], + "errors": [], + "modelVersion": "2022-03-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_input_with_some_errors.json index e8b40368e45c..fcb499296c4e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5c7bcc46-d658-47de-9ecc-0059c16d2fab", + "apim-request-id": "772e3e34-39a1-4a22-9b4c-60ab0db3b5dc", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:27 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e70fdeb6-05d5-42b7-8323-98f26694f9c2?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:31 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/67a10734-9c78-4ef7-a998-a5e23b008c57?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-envoy-upstream-service-time": "155" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e70fdeb6-05d5-42b7-8323-98f26694f9c2?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/67a10734-9c78-4ef7-a998-a5e23b008c57?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05ec9831-16af-42a8-b5a9-1d97f5828cd6", - "Content-Length": "2753", + "apim-request-id": "5b373cfe-4e7a-4811-bf76-d1240fd53396", + "Content-Length": "2806", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:32 GMT", + "Date": "Mon, 17 Oct 2022 18:58:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { - "jobId": "e70fdeb6-05d5-42b7-8323-98f26694f9c2", - "lastUpdatedDateTime": "2022-06-09T23:11:28Z", - "createdDateTime": "2022-06-09T23:11:27Z", - "expirationDateTime": "2022-06-10T23:11:27Z", + "jobId": "67a10734-9c78-4ef7-a998-a5e23b008c57", + "lastUpdateDateTime": "2022-10-17T18:58:34Z", + "createdDateTime": "2022-10-17T18:58:31Z", + "expirationDateTime": "2022-10-18T18:58:31Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:28.2319445Z", + "lastUpdateDateTime": "2022-10-17T18:58:34.0536054Z", "status": "succeeded", "results": { "documents": [ @@ -241,6 +241,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -254,6 +255,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { @@ -289,7 +291,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027english\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_docs.json index c1f9cee75caa..393d03fa1224 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "43bf9c55-4069-4bed-9315-a6aabe9ddf42", + "apim-request-id": "e9f4d257-f806-4038-b425-56641ad7889d", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:57 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/64db7f5e-b4f7-4660-95f9-8d379550979d?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:00 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7e728474-ab2f-4341-86ff-4c7b426a4ffb?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "217" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/64db7f5e-b4f7-4660-95f9-8d379550979d?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/7e728474-ab2f-4341-86ff-4c7b426a4ffb?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a46e948-e006-4308-bad7-83fad6b52a78", - "Content-Length": "730", + "apim-request-id": "4bd1d193-f2b5-49fa-83f0-64e360d60923", + "Content-Length": "744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:01 GMT", + "Date": "Mon, 17 Oct 2022 18:59:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "jobId": "64db7f5e-b4f7-4660-95f9-8d379550979d", - "lastUpdatedDateTime": "2022-06-09T23:11:58Z", - "createdDateTime": "2022-06-09T23:11:57Z", - "expirationDateTime": "2022-06-10T23:11:57Z", + "jobId": "7e728474-ab2f-4341-86ff-4c7b426a4ffb", + "lastUpdateDateTime": "2022-10-17T18:59:02Z", + "createdDateTime": "2022-10-17T18:59:00Z", + "expirationDateTime": "2022-10-18T18:59:00Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:58.4068908Z", + "lastUpdateDateTime": "2022-10-17T18:59:02.6502011Z", "status": "succeeded", "results": { "documents": [], @@ -89,7 +89,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_method.json index 876816a787d6..4570e6136812 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "68cf15db-bf1e-42f5-ac06-271e240ab27b", + "apim-request-id": "1742f857-ba2b-4259-9867-409f1b4b320b", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:51 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/cfc422a9-883b-408b-bfaf-59322f190a02?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:54 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1af2db6-bb14-4f3c-88dd-476e1d77bda6?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/cfc422a9-883b-408b-bfaf-59322f190a02?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1af2db6-bb14-4f3c-88dd-476e1d77bda6?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0dc2699-94c9-4244-8bc8-ee16875a46d7", - "Content-Length": "730", + "apim-request-id": "461f65df-7920-456e-9980-5317e9109b94", + "Content-Length": "744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:56 GMT", + "Date": "Mon, 17 Oct 2022 18:58:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { - "jobId": "cfc422a9-883b-408b-bfaf-59322f190a02", - "lastUpdatedDateTime": "2022-06-09T23:11:52Z", - "createdDateTime": "2022-06-09T23:11:51Z", - "expirationDateTime": "2022-06-10T23:11:51Z", + "jobId": "c1af2db6-bb14-4f3c-88dd-476e1d77bda6", + "lastUpdateDateTime": "2022-10-17T18:58:57Z", + "createdDateTime": "2022-10-17T18:58:55Z", + "expirationDateTime": "2022-10-18T18:58:55Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:52.4095352Z", + "lastUpdateDateTime": "2022-10-17T18:58:57.0541984Z", "status": "succeeded", "results": { "documents": [], @@ -89,7 +89,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_normalized_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_normalized_text.json index ca966ee5cb0c..2aae39391a29 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_normalized_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_normalized_text.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "231", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4a874d80-1f35-40cd-abec-c27dd772b854", + "apim-request-id": "89a97225-2ab2-49f3-9ac7-8a08e3958294", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:46 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2349eb96-e41e-47d7-92a5-a054c7cedb11?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:51 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e92682f1-4e76-4b7d-9d2e-61a1024398c6?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2349eb96-e41e-47d7-92a5-a054c7cedb11?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/e92682f1-4e76-4b7d-9d2e-61a1024398c6?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b4092d8-4abc-4e82-beec-a5d6e68dff59", - "Content-Length": "2686", + "apim-request-id": "61405c15-4f5f-44c7-82c1-9f9efbc9a4e8", + "Content-Length": "2708", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:52 GMT", + "Date": "Mon, 17 Oct 2022 18:59:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { - "jobId": "2349eb96-e41e-47d7-92a5-a054c7cedb11", - "lastUpdatedDateTime": "2022-06-09T23:12:48Z", - "createdDateTime": "2022-06-09T23:12:47Z", - "expirationDateTime": "2022-06-10T23:12:47Z", + "jobId": "e92682f1-4e76-4b7d-9d2e-61a1024398c6", + "lastUpdateDateTime": "2022-10-17T18:59:54Z", + "createdDateTime": "2022-10-17T18:59:52Z", + "expirationDateTime": "2022-10-18T18:59:52Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:48.7468032Z", + "lastUpdateDateTime": "2022-10-17T18:59:54.0452931Z", "status": "succeeded", "results": { "documents": [ @@ -283,6 +283,7 @@ ], "relations": [ { + "confidenceScore": 0.95, "relationType": "ExaminationFindsCondition", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_out_of_order_ids.json index 1f6f315c4888..134a4a931323 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "367", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -52,40 +52,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0beb29ba-917f-4e2b-a4a5-17f790102d01", + "apim-request-id": "a89416d9-fcf4-4d5f-8b4a-ef93c684996c", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:34 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/780d91c1-5dff-4677-a7c0-61270aa4b1d1?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:38 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9c2ace23-47c6-4afd-8d42-ae29f5a80da2?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "218" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/780d91c1-5dff-4677-a7c0-61270aa4b1d1?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/9c2ace23-47c6-4afd-8d42-ae29f5a80da2?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3988750-bef9-47c4-998e-5949d361a05e", - "Content-Length": "848", + "apim-request-id": "ae9a69c1-83be-4d98-988d-6b17fcb1ce82", + "Content-Length": "847", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:39 GMT", + "Date": "Mon, 17 Oct 2022 18:58:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "111" }, "ResponseBody": { - "jobId": "780d91c1-5dff-4677-a7c0-61270aa4b1d1", - "lastUpdatedDateTime": "2022-06-09T23:11:35Z", - "createdDateTime": "2022-06-09T23:11:34Z", - "expirationDateTime": "2022-06-10T23:11:34Z", + "jobId": "9c2ace23-47c6-4afd-8d42-ae29f5a80da2", + "lastUpdateDateTime": "2022-10-17T18:58:40Z", + "createdDateTime": "2022-10-17T18:58:38Z", + "expirationDateTime": "2022-10-18T18:58:38Z", "status": "succeeded", "errors": [], "tasks": { @@ -97,7 +97,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:35.3846679Z", + "lastUpdateDateTime": "2022-10-17T18:58:40.7359428Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_pass_cls.json index 7cc13a189593..c500f98ab7cb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "212", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6bc350cb-9e86-4641-9f49-36823814dba4", + "apim-request-id": "994dd7d6-3813-4952-8eb0-57329ac26657", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:14 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f0e89adf-c790-4dce-ac7b-ba4f04553021?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:18 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5901c793-166e-4690-9a56-fd74c11e1a97?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "235" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/f0e89adf-c790-4dce-ac7b-ba4f04553021?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5901c793-166e-4690-9a56-fd74c11e1a97?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db2ae6e3-acfb-4372-b8fa-f0472b658006", - "Content-Length": "1229", + "apim-request-id": "d3db7e33-2779-4302-afc4-722a682bfef8", + "Content-Length": "1228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:18 GMT", + "Date": "Mon, 17 Oct 2022 18:59:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { - "jobId": "f0e89adf-c790-4dce-ac7b-ba4f04553021", - "lastUpdatedDateTime": "2022-06-09T23:12:15Z", - "createdDateTime": "2022-06-09T23:12:14Z", - "expirationDateTime": "2022-06-10T23:12:14Z", + "jobId": "5901c793-166e-4690-9a56-fd74c11e1a97", + "lastUpdateDateTime": "2022-10-17T18:59:19Z", + "createdDateTime": "2022-10-17T18:59:18Z", + "expirationDateTime": "2022-10-18T18:59:18Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:15.5480542Z", + "lastUpdateDateTime": "2022-10-17T18:59:19.8934982Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string.json index 90c2ae1b8647..05abf0b2f358 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "365", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e5c90a6f-5334-4b6e-a2af-b37d65662724", + "apim-request-id": "26e5b216-7040-43ce-b5e6-b3096e9a9cb5", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:15 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a10ec95d-1306-41d8-8771-a667d5b195cc?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:19 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d71b4a3a-92d6-48a2-ad3a-be977f946532?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "190" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/a10ec95d-1306-41d8-8771-a667d5b195cc?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/d71b4a3a-92d6-48a2-ad3a-be977f946532?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "235af3d1-5936-4903-8d20-1791092973de", - "Content-Length": "4488", + "apim-request-id": "717f227f-ccdb-4659-9f6d-765d92212ec1", + "Content-Length": "4531", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:20 GMT", + "Date": "Mon, 17 Oct 2022 18:58:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { - "jobId": "a10ec95d-1306-41d8-8771-a667d5b195cc", - "lastUpdatedDateTime": "2022-06-09T23:11:17Z", - "createdDateTime": "2022-06-09T23:11:16Z", - "expirationDateTime": "2022-06-10T23:11:16Z", + "jobId": "d71b4a3a-92d6-48a2-ad3a-be977f946532", + "lastUpdateDateTime": "2022-10-17T18:58:22Z", + "createdDateTime": "2022-10-17T18:58:20Z", + "expirationDateTime": "2022-10-18T18:58:20Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:17.1992512Z", + "lastUpdateDateTime": "2022-10-17T18:58:22.1100441Z", "status": "succeeded", "results": { "documents": [ @@ -445,6 +445,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "DosageOfMedication", "entities": [ { @@ -458,6 +459,7 @@ ] }, { + "confidenceScore": 1.0, "relationType": "FrequencyOfMedication", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string_v3_1.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string_v3_1.json index a607518ddc33..6b3ac4d4a319 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string_v3_1.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_passing_only_string_v3_1.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "239", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -31,40 +31,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "58c9d063-82cc-48ac-8858-3f9e9184b2bb", - "Date": "Thu, 09 Jun 2022 23:11:21 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/eb8d1aed-7d62-4b3e-a56b-1022df5b5125", + "apim-request-id": "26070746-ff31-466d-8832-e0840423fb85", + "Date": "Mon, 17 Oct 2022 18:58:25 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1c6b75f3-514f-4ff7-83f7-01b0528da046", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-envoy-upstream-service-time": "159" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/eb8d1aed-7d62-4b3e-a56b-1022df5b5125", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1c6b75f3-514f-4ff7-83f7-01b0528da046", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e71ecc18-3c4a-42d4-b2ba-3a624a81c333", + "apim-request-id": "5321e848-b955-4e40-ba88-57b1c3b76862", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:27 GMT", + "Date": "Mon, 17 Oct 2022 18:58:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { - "jobId": "eb8d1aed-7d62-4b3e-a56b-1022df5b5125", - "lastUpdateDateTime": "2022-06-09T23:11:23Z", - "createdDateTime": "2022-06-09T23:11:22Z", - "expirationDateTime": "2022-06-10T23:11:22Z", + "jobId": "1c6b75f3-514f-4ff7-83f7-01b0528da046", + "lastUpdateDateTime": "2022-10-17T18:58:27Z", + "createdDateTime": "2022-10-17T18:58:25Z", + "expirationDateTime": "2022-10-18T18:58:25Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_payload_too_large.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_payload_too_large.json index 8e4dabd0e50e..d26edb8cf858 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_payload_too_large.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_payload_too_large.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "689531", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -2527,13 +2527,13 @@ }, "StatusCode": 413, "ResponseHeaders": { - "apim-request-id": "f0c76a3f-1ee5-4b0f-9a74-55d768da4cc1", + "apim-request-id": "9422c855-8125-4e1a-b9d8-41cf2181b372", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:33 GMT", + "Date": "Mon, 17 Oct 2022 18:58:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_relations.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_relations.json index c49d5688d2c8..57ac1baf88a8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_relations.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_relations.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "238", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cc18268e-4ebe-4bfa-a7ee-9b50e5756c9c", + "apim-request-id": "761615ed-3533-4bb0-9803-17cc1c391d08", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:41 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/61001a09-3ed0-4d72-abb8-ee7f819ddc78?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:46 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b11f0b42-7d11-46e9-b769-8efe673c90c4?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/61001a09-3ed0-4d72-abb8-ee7f819ddc78?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b11f0b42-7d11-46e9-b769-8efe673c90c4?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ea29bd3-7fae-4b9f-b07e-7544326a59c3", - "Content-Length": "3870", + "apim-request-id": "a7c4d6a9-9dbb-453a-8c71-18078f2b929b", + "Content-Length": "3891", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:46 GMT", + "Date": "Mon, 17 Oct 2022 18:59:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { - "jobId": "61001a09-3ed0-4d72-abb8-ee7f819ddc78", - "lastUpdatedDateTime": "2022-06-09T23:12:42Z", - "createdDateTime": "2022-06-09T23:12:42Z", - "expirationDateTime": "2022-06-10T23:12:42Z", + "jobId": "b11f0b42-7d11-46e9-b769-8efe673c90c4", + "lastUpdateDateTime": "2022-10-17T18:59:48Z", + "createdDateTime": "2022-10-17T18:59:46Z", + "expirationDateTime": "2022-10-18T18:59:46Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:42.7160376Z", + "lastUpdateDateTime": "2022-10-17T18:59:48.4193179Z", "status": "succeeded", "results": { "documents": [ @@ -411,6 +411,7 @@ ], "relations": [ { + "confidenceScore": 1.0, "relationType": "Abbreviation", "entities": [ { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_show_stats_and_model_version.json index f344a8a4aeed..768ed1f0486d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "393", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -53,40 +53,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b61657b7-eac7-4fbc-b4a6-208e25b49bdc", + "apim-request-id": "d8bcf04a-1e6d-46d0-bbf0-65c23989a6ce", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:39:30 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/171e0c8b-1f4b-409d-aa93-34cb75dda0f7?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:43 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/33dbd348-2b34-48f5-8abb-bef0d1868943?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "424" + "x-envoy-upstream-service-time": "300" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/171e0c8b-1f4b-409d-aa93-34cb75dda0f7?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/33dbd348-2b34-48f5-8abb-bef0d1868943?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50a213ad-e0b8-48ca-9a45-858305c73fd7", - "Content-Length": "1184", + "apim-request-id": "d69734d3-7e06-4f8c-8e20-93f10a8f2d6b", + "Content-Length": "1183", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:39:35 GMT", + "Date": "Mon, 17 Oct 2022 18:58:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { - "jobId": "171e0c8b-1f4b-409d-aa93-34cb75dda0f7", - "lastUpdatedDateTime": "2022-06-09T23:39:32Z", - "createdDateTime": "2022-06-09T23:39:29Z", - "expirationDateTime": "2022-06-10T23:39:29Z", + "jobId": "33dbd348-2b34-48f5-8abb-bef0d1868943", + "lastUpdateDateTime": "2022-10-17T18:58:46Z", + "createdDateTime": "2022-10-17T18:58:44Z", + "expirationDateTime": "2022-10-18T18:58:44Z", "status": "succeeded", "errors": [], "tasks": { @@ -98,7 +98,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:39:32.0682617Z", + "lastUpdateDateTime": "2022-10-17T18:58:46.2372055Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_too_many_documents.json index 20db4071a970..251b62234dc6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "1639", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -157,13 +157,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "31dc35e2-14b0-4b73-ad27-fb92b48c2760", + "apim-request-id": "5bcc312d-a5a7-4041-aa9a-7cfda16791e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:32 GMT", + "Date": "Mon, 17 Oct 2022 18:58:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_user_agent.json index 7c4de3a98447..9c05576abe16 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "206", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -32,40 +32,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ba90d17f-2538-4356-bc56-12b8fd2d6f68", + "apim-request-id": "ca22e852-64b8-4fca-8b26-18761bc53599", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:12:02 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/520b397c-e8f4-4d52-af61-c2e720b6c68a?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:59:06 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6238802e-27f0-427b-8c78-cf0c3d94d0d3?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/520b397c-e8f4-4d52-af61-c2e720b6c68a?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6238802e-27f0-427b-8c78-cf0c3d94d0d3?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9fcf219-796b-4afb-9b32-fac1fe823ea9", - "Content-Length": "521", + "apim-request-id": "5d72daa7-0cf8-4100-a880-42b127d435e6", + "Content-Length": "520", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:12:07 GMT", + "Date": "Mon, 17 Oct 2022 18:59:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { - "jobId": "520b397c-e8f4-4d52-af61-c2e720b6c68a", - "lastUpdatedDateTime": "2022-06-09T23:12:04Z", - "createdDateTime": "2022-06-09T23:12:03Z", - "expirationDateTime": "2022-06-10T23:12:03Z", + "jobId": "6238802e-27f0-427b-8c78-cf0c3d94d0d3", + "lastUpdateDateTime": "2022-10-17T18:59:08Z", + "createdDateTime": "2022-10-17T18:59:06Z", + "expirationDateTime": "2022-10-18T18:59:06Z", "status": "succeeded", "errors": [], "tasks": { @@ -77,7 +77,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:12:04.4701473Z", + "lastUpdateDateTime": "2022-10-17T18:59:08.1454505Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json index 5035c096b64e..ab5924f3d73c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_healthcare_async.pyTestHealthtest_whole_batch_language_hint_and_dict_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "366", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -42,40 +42,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "042ade24-a91b-4f8e-8e6b-38ad3c53efae", + "apim-request-id": "fc4cd73f-c730-4893-af77-eb00d088b769", "Content-Length": "0", - "Date": "Thu, 09 Jun 2022 23:11:45 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/03b5a29e-2b6b-4b80-95ba-e90d5a1de499?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 18:58:50 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ece5c158-877b-4e03-9ab9-f904cb125033?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/03b5a29e-2b6b-4b80-95ba-e90d5a1de499?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ece5c158-877b-4e03-9ab9-f904cb125033?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cb8e1ee-feac-4f03-9fcc-36d9e3d98da5", - "Content-Length": "629", + "apim-request-id": "53aa90d4-bb12-4072-88b5-45c26fd2215d", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 09 Jun 2022 23:11:51 GMT", + "Date": "Mon, 17 Oct 2022 18:58:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { - "jobId": "03b5a29e-2b6b-4b80-95ba-e90d5a1de499", - "lastUpdatedDateTime": "2022-06-09T23:11:47Z", - "createdDateTime": "2022-06-09T23:11:46Z", - "expirationDateTime": "2022-06-10T23:11:46Z", + "jobId": "ece5c158-877b-4e03-9ab9-f904cb125033", + "lastUpdateDateTime": "2022-10-17T18:58:51Z", + "createdDateTime": "2022-10-17T18:58:49Z", + "expirationDateTime": "2022-10-18T18:58:49Z", "status": "succeeded", "errors": [], "tasks": { @@ -87,7 +87,7 @@ { "kind": "HealthcareLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-09T23:11:47.3713739Z", + "lastUpdateDateTime": "2022-10-17T18:58:51.9486539Z", "status": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json index 92b37c1962c9..54e9c4400380 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "418", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b28717bf-d894-4b55-9a71-9d6892359e88", - "Content-Length": "1571", + "apim-request-id": "5de5c496-f629-40d9-a404-a837d1672c89", + "Content-Length": "1558", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:41 GMT", + "Date": "Mon, 17 Oct 2022 19:00:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -65,17 +66,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -92,17 +93,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -112,8 +113,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -130,15 +131,15 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -149,9 +150,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -162,7 +163,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json index b62989c79a80..30e7fb617ad9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "418", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9b134a5-d7f5-4f45-b4f3-655527ef2602", - "Content-Length": "1289", + "apim-request-id": "f2df0533-161f-4968-995b-e27face4d15d", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:42 GMT", + "Date": "Mon, 17 Oct 2022 19:00:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -78,17 +79,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -98,8 +99,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -112,15 +113,15 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -131,9 +132,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -144,7 +145,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_credentials.json index 417b127aa8e9..b24634d86656 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "cfaea5ed-cce4-4cc9-86b5-eb3634609e94", + "apim-request-id": "3757ef72-b39e-48a2-8583-20bfa3449306", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:14:45 GMT" + "Date": "Mon, 17 Oct 2022 19:00:22 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_model_version_error.json index 01590711efc9..1e07892bcfda 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "227", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,13 +29,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "903c2476-01a8-44ae-9d78-a7d1cd4c207a", + "apim-request-id": "82212338-d9b3-4eb2-b9ae-4ff20a11fd08", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:51 GMT", + "Date": "Mon, 17 Oct 2022 19:00:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -43,7 +43,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-04-01,latest,2021-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-04-01,latest,2022-10-01,2022-06-01,2021-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit.json index c92e09acbb9c..8c9ca13382d7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "58858", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -5273,13 +5273,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "f11d996d-9d6f-4255-a3ed-84c3b3f5b607", + "apim-request-id": "be92497d-e572-48e8-b979-54dab894b929", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:46 GMT", + "Date": "Mon, 17 Oct 2022 19:00:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json index 1fa36e646c72..d7ae55bd103a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "56065", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -5028,13 +5028,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5b17f9e9-5a7c-4aab-84a9-a2806cfb9eea", + "apim-request-id": "8410ccd4-5bd7-42a3-835b-02d487e994d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:53 GMT", + "Date": "Mon, 17 Oct 2022 19:00:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json index 193710075ccd..36dfbcbd5233 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81c2b9dd-c611-4278-9620-54ebad9ab783", - "Content-Length": "959", + "apim-request-id": "f47985a7-c0ec-43b8-893e-8936247ac1dd", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:48 GMT", + "Date": "Mon, 17 Oct 2022 19:00:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -76,19 +77,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -109,7 +110,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -122,12 +123,12 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -135,7 +136,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -164,14 +165,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bde25c77-0fb1-470a-add0-6dcfc1f57748", - "Content-Length": "959", + "apim-request-id": "855bee60-f2d3-4cd8-b5e9-eeedc46619cd", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:48 GMT", + "Date": "Mon, 17 Oct 2022 19:00:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -181,17 +183,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -205,16 +207,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -228,7 +230,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -236,7 +238,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -248,12 +250,12 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -261,7 +263,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -290,14 +292,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73b88f2c-5cce-4473-a20e-8ecbf8b466ca", - "Content-Length": "959", + "apim-request-id": "007b9363-307c-4c69-831d-967e26c23e9e", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:49 GMT", + "Date": "Mon, 17 Oct 2022 19:00:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -307,17 +310,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -328,19 +331,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -353,7 +356,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -361,7 +364,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -374,7 +377,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json index d40dd80db3ce..ee1082d05fb5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c8df275-60a1-4779-b6e1-2cf412007549", - "Content-Length": "368", + "apim-request-id": "c10fbb90-fd17-467e-9e66-975d1f56fd55", + "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:56 GMT", + "Date": "Mon, 17 Oct 2022 19:00:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -43,19 +44,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -66,7 +67,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json index 692842539dbe..1e3a9a719c25 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,32 +22,33 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2d3e51b-559a-4d3e-964d-df952f0e17b9", + "apim-request-id": "b9cc5449-1718-49a1-9771-a2e0e1c9510b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:56 GMT", + "Date": "Mon, 17 Oct 2022 19:00:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -58,7 +59,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs.json index 50c5b924d9e5..4cb4667adaa6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "895ebaff-edf0-4d5d-8d46-5ebe11391c6a", + "apim-request-id": "58a2f6e0-d121-4041-9cd3-242038a46fb9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:57 GMT", + "Date": "Mon, 17 Oct 2022 19:00:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -38,16 +39,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -58,7 +59,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json index 0912162ebcc5..5d4f9d3ba5bf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "208", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20e4dbbd-ba4a-4345-ab8c-193656ae41db", - "Content-Length": "379", + "apim-request-id": "795794da-6b62-402c-b753-dd3c2b68ee0c", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:58 GMT", + "Date": "Mon, 17 Oct 2022 19:00:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -47,16 +48,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -67,7 +68,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json index b1a81813ad8f..91f6f96e06f3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23440321-524c-474c-94f4-2cf72d50b194", + "apim-request-id": "af8e7ae8-88e0-4f52-b4fc-1e6758b7ee6b", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT", + "Date": "Mon, 17 Oct 2022 19:00:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -53,7 +54,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json index a1fd0dcc3e97..631679790ece 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "614de4ff-5cb2-415d-aeff-5d36c6a479bd", + "apim-request-id": "4f974fc0-eb3f-43f1-a603-32fe63b62499", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT", + "Date": "Mon, 17 Oct 2022 19:00:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -53,7 +54,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_errors.json index 8deab240a73e..4aa423a0187b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5411", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7aaadbb2-0990-4138-b4af-2cd96396146e", - "Content-Length": "946", + "apim-request-id": "f0c4bdd3-aef2-401f-961b-0b157cad7d54", + "Content-Length": "1194", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:51 GMT", + "Date": "Mon, 17 Oct 2022 19:00:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } }, @@ -85,7 +86,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_warnings.json index d65b4dc3bf2b..2c81596a771c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_document_warnings.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "201", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d345bc4d-2e48-4df1-a2e1-f96b77aa484b", - "Content-Length": "397", + "apim-request-id": "8acb02b8-e3b2-44ac-80b1-44374a815610", + "Content-Length": "391", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -45,17 +46,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.05, - "negative": 0.94 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.05, - "negative": 0.94 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "offset": 0, "length": 40, @@ -66,7 +67,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_duplicate_ids_error.json index 138edf639d7a..df23392f46a7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "253", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -33,13 +33,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3e36dcd2-ea47-44b1-a328-1b9bcc1178f7", + "apim-request-id": "cbab22c6-d610-4d5a-9ddf-6583782bd151", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:52 GMT", + "Date": "Mon, 17 Oct 2022 19:00:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_empty_credential_class.json index 182dd566d30b..ae4e6f3219e7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "c0702518-a679-4e5a-86f1-993ff8e99bb1", + "apim-request-id": "b8ee2572-aad6-4038-b9fd-75b104c1bc2b", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:14:45 GMT" + "Date": "Mon, 17 Oct 2022 19:00:22 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json index 2e1923bb60b8..7d2195511f09 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,32 +22,33 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b193500-f910-424c-85d8-639444a464c2", + "apim-request-id": "22b4f544-6437-43a3-a770-966974c7cd2d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:57 GMT", + "Date": "Mon, 17 Oct 2022 19:00:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -58,7 +59,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json index 9b8d6e118af9..fbcc9ef7a470 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e5d2cb1-f319-46dd-8782-79936b1d1e90", - "Content-Length": "368", + "apim-request-id": "300ffe3a-82c1-43f4-b9b2-381d5eee5117", + "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:57 GMT", + "Date": "Mon, 17 Oct 2022 19:00:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -43,19 +44,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -66,7 +67,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_all_errors.json index 1eee836cf786..a7fc7f106781 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "312", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "876bba2f-46cd-4a15-8d12-820723c38568", - "Content-Length": "772", + "apim-request-id": "7db1885b-ab3e-4516-9f78-eead1bb4cb1a", + "Content-Length": "1020", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:42 GMT", + "Date": "Mon, 17 Oct 2022 19:00:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } }, @@ -85,7 +86,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_some_errors.json index 71d46c16de2b..01956f651689 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d9e3028-7209-42a5-94d8-fc16f1377e32", - "Content-Length": "1049", + "apim-request-id": "f62b8dda-6ae8-4e7b-b7f5-4aeb7c930b9f", + "Content-Length": "1294", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:42 GMT", + "Date": "Mon, 17 Oct 2022 19:00:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,15 +56,15 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -74,9 +75,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -105,12 +106,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json index 75f1bc91ad6d..5cd7474c1d89 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df387081-0300-4b40-98f1-11696e1221f2", - "Content-Length": "446", + "apim-request-id": "1a1ffa8b-479f-469c-86c8-d0ba530a4ab3", + "Content-Length": "699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:49 GMT", + "Date": "Mon, 17 Oct 2022 19:00:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -48,12 +49,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json index 8ed3dd34e9df..69649a2113f0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2042bbf3-aeba-4202-951c-3c14717e655d", - "Content-Length": "446", + "apim-request-id": "b88d1402-0d11-4c15-b223-d5a32d8b5bad", + "Content-Length": "699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:49 GMT", + "Date": "Mon, 17 Oct 2022 19:00:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -48,12 +49,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json index 4aa075736706..336a5cbfb946 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c531634b-9e4f-4014-b85f-ae8e09b71a62", - "Content-Length": "556", + "apim-request-id": "7e02ac51-37f7-4c51-b97a-5bf329766772", + "Content-Length": "550", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:53 GMT", + "Date": "Mon, 17 Oct 2022 19:00:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -56,17 +57,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 35, @@ -77,7 +78,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json index 014b6a07e578..d6ef5454a6e5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "99", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,43 +22,44 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa9adae3-7861-49f7-a43e-9f41e8dd1625", + "apim-request-id": "6eb27d3a-4b91-4b03-8ae0-78b7073db0fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:55 GMT", + "Date": "Mon, 17 Oct 2022 19:00:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "mixed", + "sentiment": "positive", "confidenceScores": { - "positive": 0.38, - "neutral": 0.14, - "negative": 0.48 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.74, - "neutral": 0.23, - "negative": 0.02 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "offset": 0, "length": 15, "text": "I like nature. " }, { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.04, - "negative": 0.94 + "neutral": 0.7, + "negative": 0.29 }, "offset": 15, "length": 26, @@ -69,7 +70,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_offset.json index 51d26d8d9b62..b9f230ce3eeb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_offset.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "577f2ffc-5916-4111-b63a-8465397a0055", - "Content-Length": "522", + "apim-request-id": "a73d0de4-b246-487d-aa69-b3d99839e462", + "Content-Length": "521", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:55 GMT", + "Date": "Mon, 17 Oct 2022 19:00:36 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -43,30 +44,30 @@ "documents": [ { "id": "0", - "sentiment": "mixed", + "sentiment": "positive", "confidenceScores": { - "positive": 0.38, - "neutral": 0.14, - "negative": 0.48 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.74, - "neutral": 0.23, - "negative": 0.02 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "offset": 0, "length": 15, "text": "I like nature. " }, { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.04, - "negative": 0.94 + "neutral": 0.7, + "negative": 0.29 }, "offset": 15, "length": 26, @@ -77,7 +78,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining.json index 8d96ed8fc06b..50473ac509b1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "258", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6811295-81ae-4a49-b5f2-87147a86e5e2", + "apim-request-id": "7789596d-4732-473d-984f-0aab4d52ef7e", "Content-Length": "1009", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:54 GMT", + "Date": "Mon, 17 Oct 2022 19:00:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -113,7 +114,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json index 3177d3436609..c84a78e9cfe9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "790", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -59,11 +59,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43a0cb3f-c074-4920-9917-74c4b09950a9", - "Content-Length": "7827", + "apim-request-id": "5994742c-d1c0-4b57-a6e8-faffe1d67a9c", + "Content-Length": "7828", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", - "Date": "Wed, 08 Jun 2022 01:14:54 GMT", + "Date": "Mon, 17 Oct 2022 19:00:36 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "34" @@ -78,7 +79,7 @@ "confidenceScores": { "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { @@ -86,7 +87,7 @@ "confidenceScores": { "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 25, @@ -131,14 +132,14 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -181,7 +182,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 26, @@ -241,17 +242,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.03, + "positive": 0.0, "neutral": 0.0, - "negative": 0.97 + "negative": 0.99 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.03, + "positive": 0.0, "neutral": 0.0, - "negative": 0.97 + "negative": 0.99 }, "offset": 0, "length": 50, @@ -461,17 +462,17 @@ "id": "4", "sentiment": "positive", "confidenceScores": { - "positive": 1.0, - "neutral": 0.0, - "negative": 0.0 + "positive": 0.92, + "neutral": 0.07, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 1.0, - "neutral": 0.0, - "negative": 0.0 + "positive": 0.92, + "neutral": 0.07, + "negative": 0.01 }, "offset": 0, "length": 56, @@ -530,17 +531,17 @@ "id": "5", "sentiment": "negative", "confidenceScores": { - "positive": 0.09, + "positive": 0.04, "neutral": 0.0, - "negative": 0.91 + "negative": 0.96 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.09, + "positive": 0.04, "neutral": 0.0, - "negative": 0.91 + "negative": 0.96 }, "offset": 0, "length": 75, @@ -638,17 +639,17 @@ "id": "6", "sentiment": "negative", "confidenceScores": { - "positive": 0.02, - "neutral": 0.09, - "negative": 0.88 + "positive": 0.0, + "neutral": 0.02, + "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.02, - "neutral": 0.09, - "negative": 0.88 + "positive": 0.0, + "neutral": 0.02, + "negative": 0.98 }, "offset": 0, "length": 19, @@ -690,7 +691,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json index 07bc968d25e4..fb63dd5375ff 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "275dbb10-8f52-40cf-b791-e677b3a74281", - "Content-Length": "405", + "apim-request-id": "c9375e45-a518-40c9-94f8-e23c86ab1b44", + "Content-Length": "403", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:55 GMT", + "Date": "Mon, 17 Oct 2022 19:00:36 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -44,19 +45,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.34, - "negative": 0.08 + "positive": 0.17, + "neutral": 0.81, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.34, - "negative": 0.08 + "positive": 0.17, + "neutral": 0.81, + "negative": 0.01 }, "offset": 0, "length": 18, @@ -69,7 +70,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json index 9448a824ce69..befebde7f4eb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "216", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6fa8c51-02ea-4115-9285-7a85891545e1", - "Content-Length": "957", + "apim-request-id": "77e45757-604c-44ab-975f-ae1edbb2a359", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:54 GMT", + "Date": "Mon, 17 Oct 2022 19:00:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -46,17 +47,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 32, @@ -114,7 +115,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_out_of_order_ids.json index 6494c8533289..0996b15432ee 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "344", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc787695-cb14-484d-8677-7f725d34cf1b", - "Content-Length": "1288", + "apim-request-id": "151aa804-7cec-4399-84c1-a8ce65ec93b4", + "Content-Length": "1292", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:14:46 GMT", + "Date": "Mon, 17 Oct 2022 19:00:23 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -65,17 +66,17 @@ "id": "56", "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -86,19 +87,19 @@ }, { "id": "0", - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -109,19 +110,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -134,17 +135,17 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -167,7 +168,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_output_same_order_as_input.json index 10be512abac2..6d27e480e14a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7cc45015-7022-4b2d-8ddb-f9d2736d1f42", - "Content-Length": "1383", + "apim-request-id": "be87cf68-7765-4cca-9dc1-421abb0f0614", + "Content-Length": "1377", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:14:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -65,17 +66,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.9, - "negative": 0.04 + "positive": 0.05, + "neutral": 0.95, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.9, - "negative": 0.04 + "positive": 0.05, + "neutral": 0.95, + "negative": 0.0 }, "offset": 0, "length": 3, @@ -88,17 +89,17 @@ "id": "2", "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.89, - "negative": 0.05 + "positive": 0.04, + "neutral": 0.96, + "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.89, - "negative": 0.05 + "positive": 0.04, + "neutral": 0.96, + "negative": 0.01 }, "offset": 0, "length": 3, @@ -111,17 +112,17 @@ "id": "3", "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.88, - "negative": 0.05 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.88, - "negative": 0.05 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 5, @@ -134,17 +135,17 @@ "id": "4", "sentiment": "neutral", "confidenceScores": { - "positive": 0.09, - "neutral": 0.86, - "negative": 0.05 + "positive": 0.01, + "neutral": 0.98, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.09, - "neutral": 0.86, - "negative": 0.05 + "positive": 0.01, + "neutral": 0.98, + "negative": 0.0 }, "offset": 0, "length": 4, @@ -157,17 +158,17 @@ "id": "5", "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.89, - "negative": 0.04 + "positive": 0.06, + "neutral": 0.93, + "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.89, - "negative": 0.04 + "positive": 0.06, + "neutral": 0.93, + "negative": 0.01 }, "offset": 0, "length": 4, @@ -178,7 +179,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_pass_cls.json index ffc9dee68396..486105994b53 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4daac075-348c-458d-b97d-a0b2d4fe629d", - "Content-Length": "383", + "apim-request-id": "26412a24-7699-4536-88a6-b8a5f0e6dab2", + "Content-Length": "381", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:14:53 GMT", + "Date": "Mon, 17 Oct 2022 19:00:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -46,16 +47,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.03, - "neutral": 0.82, - "negative": 0.14 + "neutral": 0.97, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.03, - "neutral": 0.82, - "negative": 0.14 + "neutral": 0.97, + "negative": 0.0 }, "offset": 0, "length": 28, @@ -66,7 +67,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_passing_only_string.json index 9ebc53898cac..da73bbf40519 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "461", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -43,14 +43,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ad7b0be-30d5-4e5f-b9f6-1f91cca6b7af", - "Content-Length": "1451", + "apim-request-id": "c20e56fc-7da7-4340-a51a-07f8f38394bc", + "Content-Length": "1438", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:42 GMT", + "Date": "Mon, 17 Oct 2022 19:00:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -60,17 +61,17 @@ "id": "0", "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -83,17 +84,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -103,8 +104,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -117,15 +118,15 @@ "id": "2", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -136,9 +137,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -161,7 +162,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json index 2f4f2644ae53..662115954b08 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f79c2bb-fb45-4a3c-bfce-3306c2e9334b", - "Content-Length": "959", + "apim-request-id": "998ccb3a-2e9a-4a74-958b-bd8db8fbe26f", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:47 GMT", + "Date": "Mon, 17 Oct 2022 19:00:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -79,16 +80,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -102,7 +103,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -110,7 +111,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_rotate_subscription_key.json index b9a4e4e84a89..de7e6a5f832f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6d9d5f1-1107-4f72-9802-c1fb7542f1ef", - "Content-Length": "959", + "apim-request-id": "0f849c46-f828-486b-98db-c423cecd8b8a", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT", + "Date": "Mon, 17 Oct 2022 19:00:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -79,16 +80,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -102,7 +103,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -110,7 +111,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -122,12 +123,12 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -135,7 +136,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -164,10 +165,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "5cd53de0-3a22-4277-b3e3-f795dac47f17", + "apim-request-id": "b5b9203a-5722-46fc-b24e-449bb438fc69", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT" + "Date": "Mon, 17 Oct 2022 19:00:27 GMT" }, "ResponseBody": { "error": { @@ -177,7 +178,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +186,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -214,14 +215,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b130c5ba-847f-4f77-af01-f1d791e26270", - "Content-Length": "959", + "apim-request-id": "599b7fec-8dbd-477b-8007-3d93ce05cb13", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT", + "Date": "Mon, 17 Oct 2022 19:00:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -231,17 +233,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -255,16 +257,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -278,7 +280,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -286,7 +288,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -298,7 +300,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json index f33765c216af..b575a8d8b639 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -49,14 +49,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72c5c938-7715-4084-83f9-5d96edae6fb8", - "Content-Length": "1624", + "apim-request-id": "5f0eff1d-b6cd-4eca-a9e1-555d3ebabb7b", + "Content-Length": "1628", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:14:46 GMT", + "Date": "Mon, 17 Oct 2022 19:00:23 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -76,17 +77,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -97,23 +98,23 @@ }, { "id": "0", - "sentiment": "positive", + "sentiment": "negative", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -124,23 +125,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -157,17 +158,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -190,7 +191,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_too_many_documents.json index adf97834a834..6da6d718b1a9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "637", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -78,13 +78,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "80d82c71-df6d-4b22-8904-1675b437bf42", + "apim-request-id": "e6b78f63-77e0-485d-b472-125fd4468adc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:14:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_user_agent.json index 4db6c7715756..4d4d725de068 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "318c15f0-27be-4e59-988f-e863249c6b00", - "Content-Length": "959", + "apim-request-id": "4d03ec49-18b1-4efd-a837-79be6881979e", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:50 GMT", + "Date": "Mon, 17 Oct 2022 19:00:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -79,16 +80,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -102,7 +103,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -110,7 +111,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json index 9125cf22c8e0..410d0a5ce0ec 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61ce77b6-9e4e-4289-9239-cfe03074e7a2", - "Content-Length": "1124", + "apim-request-id": "5a11aaee-d7b3-4ef2-acef-1bbdacfb6270", + "Content-Length": "1114", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:47 GMT", + "Date": "Mon, 17 Oct 2022 19:00:24 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,7 +56,7 @@ "id": "0", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -63,7 +64,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -78,17 +79,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -98,8 +99,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -112,17 +113,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 42, @@ -133,7 +134,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json index 85e0b89237ca..7699bfa0ba10 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "382", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "197c4ea1-57b1-4363-af1c-69a0f2eec9fa", - "Content-Length": "1124", + "apim-request-id": "61265b6e-9f03-4f2e-a3a3-22e02c18e41e", + "Content-Length": "1112", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:47 GMT", + "Date": "Mon, 17 Oct 2022 19:00:24 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,7 +56,7 @@ "id": "0", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -63,7 +64,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -78,17 +79,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.82, + "negative": 0.17 }, "offset": 0, "length": 39, @@ -98,8 +99,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -112,17 +113,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 42, @@ -133,7 +134,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json index 1c537d4e8e12..90b126fa40a1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbf7770e-53fb-489e-a1a5-3788a687a932", - "Content-Length": "959", + "apim-request-id": "91010f6e-c439-4c28-af19-f484738fe7cb", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:48 GMT", + "Date": "Mon, 17 Oct 2022 19:00:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -76,19 +77,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -109,7 +110,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json index a6c7238b1d47..0ec28748a5a3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ccf57d0-05da-4fcd-9088-0a630167f271", - "Content-Length": "959", + "apim-request-id": "1b873ba4-c4eb-4e1b-84cf-4829483e7c64", + "Content-Length": "957", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:48 GMT", + "Date": "Mon, 17 Oct 2022 19:00:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -76,19 +77,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -102,7 +103,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -110,7 +111,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json index 4f8fe8fd15b4..25faac63ff84 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,11 +38,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c25023f5-494e-472c-9abc-1648c4018029", - "Content-Length": "955", + "apim-request-id": "80b64987-c313-44db-afb9-d910b46a341c", + "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:47 GMT", + "Date": "Mon, 17 Oct 2022 19:00:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "19" @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 41, @@ -79,16 +80,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "offset": 0, "length": 39, @@ -99,19 +100,19 @@ }, { "id": "3", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 }, "offset": 0, "length": 4, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json index feb1ff5314f0..a180e1e11adb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed25ad93-fcae-4778-8159-cefc3884ad2c", - "Content-Length": "955", + "apim-request-id": "0bd30f19-1b89-4efa-8891-1cda1f7bd999", + "Content-Length": "951", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:14:48 GMT", + "Date": "Mon, 17 Oct 2022 19:00:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -55,17 +56,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 41, @@ -79,16 +80,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "offset": 0, "length": 39, @@ -99,19 +100,19 @@ }, { "id": "3", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 0.96, + "neutral": 0.04, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 0.96, + "neutral": 0.04, + "negative": 0.01 }, "offset": 0, "length": 4, @@ -122,7 +123,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json index 75b1c52dae83..fdd7e69f5624 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "418", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "742f4f60-5616-4baf-8ca2-51ff1e9e10ed", - "Content-Length": "1571", + "apim-request-id": "339a17da-0af0-44d1-98be-7c95da93ac3e", + "Content-Length": "1558", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:29 GMT", + "Date": "Mon, 17 Oct 2022 19:00:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -64,17 +65,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -91,17 +92,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -111,8 +112,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -129,15 +130,15 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -148,9 +149,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -161,7 +162,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json index 19048e39e6e9..8f98bebe52c8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "418", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "698e2d84-e8d1-42da-85da-6846dafa2b1f", - "Content-Length": "1289", + "apim-request-id": "d7590283-65ff-4292-b817-8c1eaf594563", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:29 GMT", + "Date": "Mon, 17 Oct 2022 19:00:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -77,17 +78,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -97,8 +98,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -111,15 +112,15 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -130,9 +131,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -143,7 +144,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_credentials.json index b8e0fed0bef4..46893f29e4d6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "03a9d964-3d6f-445d-bdcc-c20876412475", + "apim-request-id": "7eb6c50d-e01d-405b-b11b-21b0d31f45d6", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:29:31 GMT" + "Date": "Mon, 17 Oct 2022 19:00:43 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_model_version_error.json index 5f1a0b6dd201..dfa9f3071951 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "227", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,13 +28,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e0b7c92f-13e8-44d2-83fa-a752fc6a62b3", + "apim-request-id": "596f2f0c-ea7d-4fa4-bd93-d2bb642aa3cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:38 GMT", + "Date": "Mon, 17 Oct 2022 19:00:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { @@ -42,7 +42,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-04-01,latest,2021-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-04-01,latest,2022-10-01,2022-06-01,2021-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit.json index d6468a8c0dbd..5cca309bcc22 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "58858", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -5272,13 +5272,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "49e0ef40-ecb1-4279-8ffe-248c4b0da368", + "apim-request-id": "713294e7-a0de-40db-b4ef-c1adeda5c8d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:32 GMT", + "Date": "Mon, 17 Oct 2022 19:00:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json index 2652c2bc42cb..1ddc582a2cd4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "56065", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -5027,13 +5027,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "baf092ed-3377-4f31-b5c0-17896944be87", + "apim-request-id": "9c9da10b-d592-4585-a93b-a72002732d20", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:40 GMT", + "Date": "Mon, 17 Oct 2022 19:00:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json index 982026b2f564..0e4b4880fa35 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_client_passed_default_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46379a41-bde1-4005-beb1-d79c0727a220", - "Content-Length": "959", + "apim-request-id": "730101c1-ad92-4fa9-9b82-6ab8d094397c", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:35 GMT", + "Date": "Mon, 17 Oct 2022 19:00:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -75,19 +76,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -100,7 +101,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -108,7 +109,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -121,19 +122,19 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -162,14 +163,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "862136c7-c1aa-4ead-9846-8ef278f98bba", - "Content-Length": "959", + "apim-request-id": "25ba92bc-a412-4e6a-805f-f95cd6737c46", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:36 GMT", + "Date": "Mon, 17 Oct 2022 19:00:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -179,17 +181,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -203,16 +205,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -226,7 +228,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -234,7 +236,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -246,19 +248,19 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -287,14 +289,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72947654-0d2d-4e5f-83dd-2dd54df4c074", - "Content-Length": "959", + "apim-request-id": "a65aecb4-7c49-46d2-9430-a9cf4753c9f9", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:36 GMT", + "Date": "Mon, 17 Oct 2022 19:00:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -304,17 +307,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -325,19 +328,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -350,7 +353,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -358,7 +361,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -371,7 +374,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json index 375871be96a1..0fe4bcd2b08c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6940c8f-9dfc-4594-a450-c4c35da8f445", - "Content-Length": "368", + "apim-request-id": "c4420aef-ac19-4fda-8d4a-37f453abaaee", + "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:45 GMT", + "Date": "Mon, 17 Oct 2022 19:00:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -42,19 +43,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -65,7 +66,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json index 42106f1abe18..f50d91308079 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_default_string_index_type_is_UnicodeCodePoint.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,32 +21,33 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c7cfcb7-e8ea-4acd-815f-a47f82297ce1", + "apim-request-id": "1a8a4452-2341-46e5-a434-81c1a648c84d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:44 GMT", + "Date": "Mon, 17 Oct 2022 19:00:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -57,7 +58,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs.json index fbbccee5b757..b58cb476cd37 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b30ab54-10fe-4d06-911d-45df1cc497d4", + "apim-request-id": "3f02da97-93a2-410e-a8bd-f52800e4bce2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:46 GMT", + "Date": "Mon, 17 Oct 2022 19:00:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -37,16 +38,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -57,7 +58,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json index c5e96180057e..1b021d2890da 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "208", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "caad63fd-824d-4b52-ad55-1110fe2c86eb", - "Content-Length": "379", + "apim-request-id": "f5b208f9-c770-414f-add6-8bf7e219d8de", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:46 GMT", + "Date": "Mon, 17 Oct 2022 19:00:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -46,16 +47,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.86, - "negative": 0.13 + "neutral": 0.8, + "negative": 0.19 }, "offset": 0, "length": 24, @@ -66,7 +67,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json index d358e9ed74b7..1bab66186630 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edc370f1-9252-4138-a8d1-68ac8f471c4d", + "apim-request-id": "3fe90cb7-c9ef-4fd5-a495-ecdb8278dab8", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:38 GMT", + "Date": "Mon, 17 Oct 2022 19:00:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -52,7 +53,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json index 81506a2da56d..087be81aeadc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "994dbfea-7017-485a-868c-1de3d7a7fd64", + "apim-request-id": "fd8a3bf2-0125-4071-9528-066c4f7ec6a8", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:38 GMT", + "Date": "Mon, 17 Oct 2022 19:00:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" @@ -52,7 +53,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_errors.json index cc4c327e0e06..7e395fdacc46 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5411", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,10 +37,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33f66b20-ae67-4e9c-9f6a-7bc637c2bfac", - "Content-Length": "946", + "apim-request-id": "869b64e0-f72b-4999-9126-e44e6a63ea84", + "Content-Length": "1194", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:38 GMT", + "Date": "Mon, 17 Oct 2022 19:00:50 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } }, @@ -84,7 +85,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_warnings.json index 0f78440961d3..0d456bd91b3b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_document_warnings.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "201", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,11 +27,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9fa5791-881a-411e-8311-5a062b872302", - "Content-Length": "397", + "apim-request-id": "2ac07fb3-6c7e-40c2-aaf7-8ca398ca0d77", + "Content-Length": "391", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:39 GMT", + "Date": "Mon, 17 Oct 2022 19:00:50 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "18" @@ -44,17 +45,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.05, - "negative": 0.94 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.05, - "negative": 0.94 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "offset": 0, "length": 40, @@ -65,7 +66,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_duplicate_ids_error.json index 06cfb51bf5e2..90b3c99d61bc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "253", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -32,13 +32,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "976e1f86-18e6-4272-b141-cd59b2133670", + "apim-request-id": "778331ca-b07a-4b5c-b4db-a1a88b9d4609", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:39 GMT", + "Date": "Mon, 17 Oct 2022 19:00:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_empty_credential_class.json index 39485a5de39f..04d159cade37 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "b3806012-0dad-4c94-a8a6-6f96584c86c7", + "apim-request-id": "5c0190a9-5c56-4ed6-9675-fee369803e6b", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:29:31 GMT" + "Date": "Mon, 17 Oct 2022 19:00:43 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json index 3b179d45dd87..7f74a61b3ffb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,32 +21,33 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9163d88a-07b2-478f-a94b-d4f71e3ee25d", + "apim-request-id": "622ab613-7940-41db-8130-672884c4e3db", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:45 GMT", + "Date": "Mon, 17 Oct 2022 19:00:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -57,7 +58,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json index 175c3122ea8e..df043c49c547 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_explicit_set_string_index_type_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f2b954a-5a1c-456a-8f49-537636432479", - "Content-Length": "368", + "apim-request-id": "63e05d3e-803a-4790-8bbc-0fb880098ea9", + "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:45 GMT", + "Date": "Mon, 17 Oct 2022 19:00:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -42,19 +43,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.38, - "negative": 0.04 + "positive": 0.25, + "neutral": 0.74, + "negative": 0.01 }, "offset": 0, "length": 11, @@ -65,7 +66,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_all_errors.json index 58d15a914104..791cd493eb02 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "312", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,13 +37,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8e29a65-f016-4611-ba47-47b7cf65031f", - "Content-Length": "772", + "apim-request-id": "cd810720-afaf-4769-8fc8-d6047f0ec23c", + "Content-Length": "1020", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:30 GMT", + "Date": "Mon, 17 Oct 2022 19:00:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } }, @@ -84,7 +85,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_some_errors.json index a925f30c54ba..a9e5e95bedb7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc3190c0-3912-438f-8182-cb279271bbbf", - "Content-Length": "1049", + "apim-request-id": "9bc0c56b-9c92-47ed-8f82-0a5f96c4646c", + "Content-Length": "1294", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:29 GMT", + "Date": "Mon, 17 Oct 2022 19:00:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "17" @@ -54,15 +55,15 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -73,9 +74,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -104,12 +105,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json index 28aab27bb36a..f4e6b47280aa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72fab48f-d42a-4f98-a93c-c55ea7f536f3", - "Content-Length": "446", + "apim-request-id": "21f92153-4e29-414e-9128-4ec1bdf05fa1", + "Content-Length": "699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:36 GMT", + "Date": "Mon, 17 Oct 2022 19:00:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -47,12 +48,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json index b9c3a71337cb..0678e2eb3a6d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51ca4b2f-9053-40e3-9fd7-bc61c95f73d4", - "Content-Length": "446", + "apim-request-id": "5f65e677-8eb6-4768-81cd-b20bbe740ba5", + "Content-Length": "699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:36 GMT", + "Date": "Mon, 17 Oct 2022 19:00:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -47,12 +48,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis" } } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json index 2007b0354399..4cc048746908 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_language_kwarg_spanish.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,11 +28,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61b53783-2f08-4147-986f-31f482eaec0c", - "Content-Length": "556", + "apim-request-id": "632d790e-8fea-444a-859c-c0da1f523d63", + "Content-Length": "550", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:40 GMT", + "Date": "Mon, 17 Oct 2022 19:00:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "18" @@ -55,17 +56,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 35, @@ -76,7 +77,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json index 692cd09ebd76..7f42d90e2052 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_no_offset_v3_sentence_sentiment.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "99", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,43 +21,44 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a93445b8-a085-4d8f-8fc9-9fcba452f4ec", + "apim-request-id": "a7c37427-30e8-4a0a-9fc4-25eef0148129", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:44 GMT", + "Date": "Mon, 17 Oct 2022 19:00:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ { "id": "0", - "sentiment": "mixed", + "sentiment": "positive", "confidenceScores": { - "positive": 0.38, - "neutral": 0.14, - "negative": 0.48 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.74, - "neutral": 0.23, - "negative": 0.02 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "offset": 0, "length": 15, "text": "I like nature. " }, { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.04, - "negative": 0.94 + "neutral": 0.7, + "negative": 0.29 }, "offset": 15, "length": 26, @@ -68,7 +69,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_offset.json index 8dde6675f213..abdf30b9f4b7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_offset.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2eb4eef-2edb-4780-94f2-381e4891f5e2", - "Content-Length": "522", + "apim-request-id": "8eba850c-6458-4670-bf47-8ad2c925b811", + "Content-Length": "521", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -42,30 +43,30 @@ "documents": [ { "id": "0", - "sentiment": "mixed", + "sentiment": "positive", "confidenceScores": { - "positive": 0.38, - "neutral": 0.14, - "negative": 0.48 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.74, - "neutral": 0.23, - "negative": 0.02 + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 }, "offset": 0, "length": 15, "text": "I like nature. " }, { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.04, - "negative": 0.94 + "neutral": 0.7, + "negative": 0.29 }, "offset": 15, "length": 26, @@ -76,7 +77,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining.json index c9607050c6b1..8c1671ab2ed0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "258", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,11 +28,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffb18094-2a81-41aa-97c5-3b6ffd5a3a11", + "apim-request-id": "2626f08a-dd52-49d3-9ce5-0d9bb7f0f651", "Content-Length": "1009", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:41 GMT", + "Date": "Mon, 17 Oct 2022 19:00:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "17" @@ -112,7 +113,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json index c4ca1c53275f..a42c957da4c9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_more_than_5_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "790", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -58,14 +58,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad2d4ade-68a9-4c42-a8aa-1187dcd6bebf", - "Content-Length": "7827", + "apim-request-id": "38e00742-0e7d-4580-b307-3c0fda39bba7", + "Content-Length": "7828", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", - "Date": "Wed, 08 Jun 2022 01:29:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -77,7 +78,7 @@ "confidenceScores": { "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { @@ -85,7 +86,7 @@ "confidenceScores": { "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 25, @@ -130,14 +131,14 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -180,7 +181,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 26, @@ -240,17 +241,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.03, + "positive": 0.0, "neutral": 0.0, - "negative": 0.97 + "negative": 0.99 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.03, + "positive": 0.0, "neutral": 0.0, - "negative": 0.97 + "negative": 0.99 }, "offset": 0, "length": 50, @@ -460,17 +461,17 @@ "id": "4", "sentiment": "positive", "confidenceScores": { - "positive": 1.0, - "neutral": 0.0, - "negative": 0.0 + "positive": 0.92, + "neutral": 0.07, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 1.0, - "neutral": 0.0, - "negative": 0.0 + "positive": 0.92, + "neutral": 0.07, + "negative": 0.01 }, "offset": 0, "length": 56, @@ -529,17 +530,17 @@ "id": "5", "sentiment": "negative", "confidenceScores": { - "positive": 0.09, + "positive": 0.04, "neutral": 0.0, - "negative": 0.91 + "negative": 0.96 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.09, + "positive": 0.04, "neutral": 0.0, - "negative": 0.91 + "negative": 0.96 }, "offset": 0, "length": 75, @@ -637,17 +638,17 @@ "id": "6", "sentiment": "negative", "confidenceScores": { - "positive": 0.02, - "neutral": 0.09, - "negative": 0.88 + "positive": 0.0, + "neutral": 0.02, + "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.02, - "neutral": 0.09, - "negative": 0.88 + "positive": 0.0, + "neutral": 0.02, + "negative": 0.98 }, "offset": 0, "length": 19, @@ -689,7 +690,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json index d7722b33f1ed..d74bde4f3cbe 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_no_mined_opinions.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6d0a647-ffca-4f44-953b-b900e40f3573", - "Content-Length": "405", + "apim-request-id": "3b682171-6230-4454-938f-03addd2c9d83", + "Content-Length": "403", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:43 GMT", + "Date": "Mon, 17 Oct 2022 19:00:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -43,19 +44,19 @@ "documents": [ { "id": "0", - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.34, - "negative": 0.08 + "positive": 0.17, + "neutral": 0.81, + "negative": 0.01 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.58, - "neutral": 0.34, - "negative": 0.08 + "positive": 0.17, + "neutral": 0.81, + "negative": 0.01 }, "offset": 0, "length": 18, @@ -68,7 +69,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json index cbdb2074c2e5..16a8531c247d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_opinion_mining_with_negated_opinion.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "216", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f468e8e-6eef-496f-9d9f-e28b4516efed", - "Content-Length": "957", + "apim-request-id": "73ce9fa8-289a-44ae-a3fb-a911b3586a10", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:41 GMT", + "Date": "Mon, 17 Oct 2022 19:00:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -45,17 +46,17 @@ "id": "0", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 32, @@ -113,7 +114,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_out_of_order_ids.json index aba925049914..2037a12bbf8e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "344", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48883960-33ee-45b2-97ca-38530cbc7d97", - "Content-Length": "1288", + "apim-request-id": "bc728cfb-11e2-4b89-aceb-42aa5b8b04c6", + "Content-Length": "1292", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:29:31 GMT", + "Date": "Mon, 17 Oct 2022 19:00:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -64,17 +65,17 @@ "id": "56", "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -85,19 +86,19 @@ }, { "id": "0", - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -108,19 +109,19 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -133,17 +134,17 @@ "id": "1", "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -166,7 +167,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_output_same_order_as_input.json index f97c8be650c3..e8e87c1be64e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be3d1707-7dc1-4652-a707-01d561c3d7cf", - "Content-Length": "1383", + "apim-request-id": "87b687be-14db-4627-8ce4-ed5491c9cfc2", + "Content-Length": "1377", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:29:30 GMT", + "Date": "Mon, 17 Oct 2022 19:00:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -64,17 +65,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.9, - "negative": 0.04 + "positive": 0.05, + "neutral": 0.95, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.9, - "negative": 0.04 + "positive": 0.05, + "neutral": 0.95, + "negative": 0.0 }, "offset": 0, "length": 3, @@ -87,17 +88,17 @@ "id": "2", "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.89, - "negative": 0.05 + "positive": 0.04, + "neutral": 0.96, + "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.06, - "neutral": 0.89, - "negative": 0.05 + "positive": 0.04, + "neutral": 0.96, + "negative": 0.01 }, "offset": 0, "length": 3, @@ -110,17 +111,17 @@ "id": "3", "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.88, - "negative": 0.05 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.88, - "negative": 0.05 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 5, @@ -133,17 +134,17 @@ "id": "4", "sentiment": "neutral", "confidenceScores": { - "positive": 0.09, - "neutral": 0.86, - "negative": 0.05 + "positive": 0.01, + "neutral": 0.98, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.09, - "neutral": 0.86, - "negative": 0.05 + "positive": 0.01, + "neutral": 0.98, + "negative": 0.0 }, "offset": 0, "length": 4, @@ -156,17 +157,17 @@ "id": "5", "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.89, - "negative": 0.04 + "positive": 0.06, + "neutral": 0.93, + "negative": 0.01 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.07, - "neutral": 0.89, - "negative": 0.04 + "positive": 0.06, + "neutral": 0.93, + "negative": 0.01 }, "offset": 0, "length": 4, @@ -177,7 +178,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_pass_cls.json index 5b41452f93f9..85448b9e09f0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fd5ca68-ee9d-40ef-bb8e-39925e10852b", - "Content-Length": "383", + "apim-request-id": "221f18d9-bd49-4a2c-bd92-0125d134f28e", + "Content-Length": "381", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:41 GMT", + "Date": "Mon, 17 Oct 2022 19:00:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -45,16 +46,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.03, - "neutral": 0.82, - "negative": 0.14 + "neutral": 0.97, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.03, - "neutral": 0.82, - "negative": 0.14 + "neutral": 0.97, + "negative": 0.0 }, "offset": 0, "length": 28, @@ -65,7 +66,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_passing_only_string.json index 1e496c293fdb..879781d329d6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "461", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -42,14 +42,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6115053e-1431-4e92-a987-c46164b02f00", - "Content-Length": "1451", + "apim-request-id": "edb05212-f725-4fd2-91cf-9b8e0525514f", + "Content-Length": "1438", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:29 GMT", + "Date": "Mon, 17 Oct 2022 19:00:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -59,17 +60,17 @@ "id": "0", "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.97, - "negative": 0.02 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 51, @@ -82,17 +83,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -102,8 +103,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -116,15 +117,15 @@ "id": "2", "sentiment": "positive", "confidenceScores": { - "positive": 0.98, - "neutral": 0.01, - "negative": 0.01 + "positive": 0.8, + "neutral": 0.19, + "negative": 0.02 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -135,9 +136,9 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.96, - "neutral": 0.03, - "negative": 0.01 + "positive": 0.6, + "neutral": 0.37, + "negative": 0.03 }, "offset": 37, "length": 23, @@ -160,7 +161,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json index c7ccd2a1600a..ec65434c2403 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_per_item_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee34eb82-3b81-4246-a2eb-a7f4e0697e0f", - "Content-Length": "959", + "apim-request-id": "90ed0cd7-1ed5-4357-b861-216ea6679151", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:34 GMT", + "Date": "Mon, 17 Oct 2022 19:00:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -78,16 +79,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -109,7 +110,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_rotate_subscription_key.json index bd49890bb278..082f6b7153be 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "905f25f0-6ac6-4006-9d5f-68acfd284cd5", - "Content-Length": "959", + "apim-request-id": "e0ba3f8f-1edc-416c-8b1e-e61aaaca0b32", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:37 GMT", + "Date": "Mon, 17 Oct 2022 19:00:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -78,16 +79,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -109,7 +110,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -121,19 +122,19 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -162,10 +163,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "a5d704fd-7a7d-435d-8062-343eb2b989fb", + "apim-request-id": "cc1ce105-67f0-4f8b-a36d-9bd88698fbfd", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:29:37 GMT" + "Date": "Mon, 17 Oct 2022 19:00:48 GMT" }, "ResponseBody": { "error": { @@ -175,14 +176,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -211,14 +212,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0777b4f8-acee-4c3d-a186-734b4eb8e20a", - "Content-Length": "959", + "apim-request-id": "a385f39b-48f4-4b79-a2ae-638aba969f08", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:37 GMT", + "Date": "Mon, 17 Oct 2022 19:00:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -228,17 +230,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -252,16 +254,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -275,7 +277,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -283,7 +285,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -295,7 +297,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json index 27e54c81d5b1..56a1e3801bc5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "502342fa-7b5b-4c27-9188-8cefcb0e3a0d", - "Content-Length": "1624", + "apim-request-id": "1d65d1fa-a8b9-44a9-aa6a-4f3e3b70ecde", + "Content-Length": "1628", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:29:32 GMT", + "Date": "Mon, 17 Oct 2022 19:00:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -75,17 +76,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.75, - "neutral": 0.2, - "negative": 0.05 + "positive": 0.89, + "neutral": 0.1, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -96,23 +97,23 @@ }, { "id": "0", - "sentiment": "positive", + "sentiment": "negative", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "sentences": [ { - "sentiment": "positive", + "sentiment": "negative", "confidenceScores": { - "positive": 0.38, - "neutral": 0.3, - "negative": 0.31 + "positive": 0.09, + "neutral": 0.25, + "negative": 0.65 }, "offset": 0, "length": 2, @@ -123,23 +124,23 @@ }, { "id": "19", - "sentiment": "neutral", + "sentiment": "positive", "statistics": { "charactersCount": 2, "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.14, - "neutral": 0.81, - "negative": 0.05 + "positive": 0.64, + "neutral": 0.35, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -156,17 +157,17 @@ "transactionsCount": 1 }, "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.82, - "neutral": 0.14, - "negative": 0.04 + "positive": 0.93, + "neutral": 0.06, + "negative": 0.01 }, "offset": 0, "length": 2, @@ -189,7 +190,7 @@ } } ], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_string_index_type_not_fail_v3.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_string_index_type_not_fail_v3.json index f1987accf605..072cf00d43e1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_string_index_type_not_fail_v3.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_string_index_type_not_fail_v3.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "75", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0088fcad-fa39-462f-ba92-aa2b05216ed8", + "apim-request-id": "4b0c4baf-9ea7-485f-ad91-e82efd737c72", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:29:44 GMT", + "Date": "Mon, 17 Oct 2022 19:00:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ @@ -36,17 +37,17 @@ "id": "0", "sentiment": "positive", "confidenceScores": { - "positive": 0.59, - "neutral": 0.22, - "negative": 0.19 + "positive": 0.87, + "neutral": 0.08, + "negative": 0.04 }, "sentences": [ { "sentiment": "positive", "confidenceScores": { - "positive": 0.59, - "neutral": 0.22, - "negative": 0.19 + "positive": 0.87, + "neutral": 0.08, + "negative": 0.04 }, "offset": 0, "length": 17, @@ -57,7 +58,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_too_many_documents.json index b750ca8e7234..1aa82dcd8ecf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "637", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -77,13 +77,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ac8921a1-421f-42ff-b58b-cca68fab2352", + "apim-request-id": "d8bb8fd1-3503-4d4b-a759-4f10d80e7fa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:29:30 GMT", + "Date": "Mon, 17 Oct 2022 19:00:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_user_agent.json index 831c0774b1ea..7a15c17e98b8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26764d48-e532-4462-9700-7bb0a575c99b", - "Content-Length": "959", + "apim-request-id": "03729210-7967-46a0-8360-0fa73e0f8fde", + "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:37 GMT", + "Date": "Mon, 17 Oct 2022 19:00:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, - "neutral": 0.96, - "negative": 0.02 + "positive": 0.0, + "neutral": 0.99, + "negative": 0.0 }, "offset": 0, "length": 22, @@ -78,16 +79,16 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.3, + "negative": 0.69 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -109,7 +110,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json index a12be5f85502..c538faaa2667 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0538289b-251c-4eab-b3f9-b716b2176600", - "Content-Length": "1124", + "apim-request-id": "adbaae38-f172-46ae-bfef-15a3fcce07bd", + "Content-Length": "1114", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:34 GMT", + "Date": "Mon, 17 Oct 2022 19:00:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,7 +55,7 @@ "id": "0", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -62,7 +63,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -77,17 +78,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, + "positive": 0.0, + "neutral": 0.02, "negative": 0.98 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.03, + "negative": 0.96 }, "offset": 0, "length": 39, @@ -97,8 +98,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -111,17 +112,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 42, @@ -132,7 +133,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json index 8b089fa2a691..8b31b970ecea 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "382", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07671bae-2c1b-472f-9db9-bee65750ad02", - "Content-Length": "1124", + "apim-request-id": "9cc535ff-62bd-4b25-888e-6acbc6e457ad", + "Content-Length": "1112", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:32 GMT", + "Date": "Mon, 17 Oct 2022 19:00:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,7 +55,7 @@ "id": "0", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -62,7 +63,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -77,17 +78,17 @@ "id": "1", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "neutral": 0.82, + "negative": 0.17 }, "offset": 0, "length": 39, @@ -97,8 +98,8 @@ "sentiment": "negative", "confidenceScores": { "positive": 0.0, - "neutral": 0.01, - "negative": 0.99 + "neutral": 0.0, + "negative": 1.0 }, "offset": 39, "length": 21, @@ -111,17 +112,17 @@ "id": "2", "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "sentences": [ { "sentiment": "negative", "confidenceScores": { - "positive": 0.01, + "positive": 0.0, "neutral": 0.0, - "negative": 0.99 + "negative": 1.0 }, "offset": 0, "length": 42, @@ -132,7 +133,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json index 248b0cac2820..7e6c8f338531 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b94b9460-ed60-4480-a189-754ba6ccc24e", - "Content-Length": "959", + "apim-request-id": "2c7cb9c5-dc25-4f64-a8cf-8c1c1dbc6c77", + "Content-Length": "953", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:35 GMT", + "Date": "Mon, 17 Oct 2022 19:00:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -75,19 +76,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -100,7 +101,7 @@ "id": "3", "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -108,7 +109,7 @@ { "sentiment": "positive", "confidenceScores": { - "positive": 0.99, + "positive": 1.0, "neutral": 0.0, "negative": 0.0 }, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json index 3bbedd88423f..b388977e3b96 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c039417e-4b0d-4b6e-bba3-78a47fe656c6", - "Content-Length": "959", + "apim-request-id": "6779e3c8-8f79-42ec-ae29-75e92f69c403", + "Content-Length": "957", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:35 GMT", + "Date": "Mon, 17 Oct 2022 19:00:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.02, + "positive": 0.04, "neutral": 0.96, - "negative": 0.02 + "negative": 0.0 }, "offset": 0, "length": 22, @@ -75,19 +76,19 @@ }, { "id": "2", - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "sentences": [ { - "sentiment": "negative", + "sentiment": "neutral", "confidenceScores": { - "positive": 0.01, - "neutral": 0.01, - "negative": 0.98 + "positive": 0.02, + "neutral": 0.64, + "negative": 0.34 }, "offset": 0, "length": 38, @@ -101,7 +102,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "sentences": [ @@ -109,7 +110,7 @@ "sentiment": "positive", "confidenceScores": { "positive": 0.99, - "neutral": 0.0, + "neutral": 0.01, "negative": 0.0 }, "offset": 0, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json index cc7cff8a4f27..1c110c5a8c3f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fdf6945-4eee-4a6e-bade-2b01e373fad8", - "Content-Length": "955", + "apim-request-id": "3e8d696b-7b56-4456-bf1e-9160ed9ee7da", + "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:34 GMT", + "Date": "Mon, 17 Oct 2022 19:00:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 41, @@ -78,16 +79,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "offset": 0, "length": 39, @@ -98,19 +99,19 @@ }, { "id": "3", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 }, "offset": 0, "length": 4, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json index eb5daf79a637..dd8db836c999 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_analyze_sentiment_async.pyTestAnalyzeSentimenttest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "SentimentAnalysis", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "271eb6cc-7564-45df-a81c-f99d51692f7e", - "Content-Length": "955", + "apim-request-id": "e82f1d97-e294-45b4-831f-047e1274dbcc", + "Content-Length": "951", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:29:35 GMT", + "Date": "Mon, 17 Oct 2022 19:00:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "SentimentAnalysisResults", @@ -54,17 +55,17 @@ "id": "1", "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { - "positive": 0.03, - "neutral": 0.94, - "negative": 0.03 + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 }, "offset": 0, "length": 41, @@ -78,16 +79,16 @@ "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "sentences": [ { "sentiment": "neutral", "confidenceScores": { "positive": 0.04, - "neutral": 0.91, - "negative": 0.05 + "neutral": 0.92, + "negative": 0.04 }, "offset": 0, "length": 39, @@ -98,19 +99,19 @@ }, { "id": "3", - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 0.96, + "neutral": 0.04, + "negative": 0.01 }, "sentences": [ { - "sentiment": "neutral", + "sentiment": "positive", "confidenceScores": { - "positive": 0.07, - "neutral": 0.85, - "negative": 0.08 + "positive": 0.96, + "neutral": 0.04, + "negative": 0.01 }, "offset": 0, "length": 4, @@ -121,7 +122,7 @@ } ], "errors": [], - "modelVersion": "2021-10-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify.json index 06575c5abdde..bc0927b1b76c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,41 +44,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a82be5e2-7d0a-452f-b4fa-b561ed4a02f4", + "apim-request-id": "187973bc-0492-4f6b-b191-b03f91dd3b77", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:43:02 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/26e22d8e-1311-4a72-885d-8c67b5dc7fc0?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:32 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/50dada02-f654-4d00-b0f2-4849ccec3ed3?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "219" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/26e22d8e-1311-4a72-885d-8c67b5dc7fc0?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/50dada02-f654-4d00-b0f2-4849ccec3ed3?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8beb2c33-d834-43d1-b4f6-b578701da327", - "Content-Length": "1007", + "apim-request-id": "534c1dca-4ae2-4182-9430-a4c55ee90b83", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:43:07 GMT", + "Date": "Mon, 17 Oct 2022 19:01:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { - "jobId": "26e22d8e-1311-4a72-885d-8c67b5dc7fc0", - "lastUpdatedDateTime": "2022-06-28T17:43:03Z", - "createdDateTime": "2022-06-28T17:43:02Z", - "expirationDateTime": "2022-06-29T17:43:02Z", + "jobId": "50dada02-f654-4d00-b0f2-4849ccec3ed3", + "lastUpdateDateTime": "2022-10-17T19:01:33Z", + "createdDateTime": "2022-10-17T19:01:31Z", + "expirationDateTime": "2022-10-18T19:01:31Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:43:03.8808084Z", + "lastUpdateDateTime": "2022-10-17T19:01:33.0050331Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify_cont_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify_cont_token.json index 743d5fc22df1..bec987ff3e54 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify_cont_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_multi_label_classify_cont_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,41 +44,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3436efe3-d3ad-4ff7-9944-a86bfa5ab648", + "apim-request-id": "426302a1-0775-467a-8e7f-ddf5e37109ba", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:44:49 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b44cb3d3-61af-482e-888b-bc292837d3c9?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:38 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/61220978-479a-45ae-8020-4de8e6d666d5?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b44cb3d3-61af-482e-888b-bc292837d3c9?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/61220978-479a-45ae-8020-4de8e6d666d5?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee11c2a8-6515-4f71-bf94-74ffc514dda0", - "Content-Length": "1007", + "apim-request-id": "5bd331fb-2666-4bd9-a177-83b740568e7c", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:44:54 GMT", + "Date": "Mon, 17 Oct 2022 19:01:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "b44cb3d3-61af-482e-888b-bc292837d3c9", - "lastUpdatedDateTime": "2022-06-28T17:44:50Z", - "createdDateTime": "2022-06-28T17:44:49Z", - "expirationDateTime": "2022-06-29T17:44:49Z", + "jobId": "61220978-479a-45ae-8020-4de8e6d666d5", + "lastUpdateDateTime": "2022-10-17T19:01:38Z", + "createdDateTime": "2022-10-17T19:01:38Z", + "expirationDateTime": "2022-10-18T19:01:38Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:44:50.6001133Z", + "lastUpdateDateTime": "2022-10-17T19:01:38.7604381Z", "status": "succeeded", "results": { "statistics": { @@ -143,30 +143,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b44cb3d3-61af-482e-888b-bc292837d3c9?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/61220978-479a-45ae-8020-4de8e6d666d5?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdebe6fc-30c8-4957-95b6-6a375adb8599", - "Content-Length": "1007", + "apim-request-id": "46e3283c-b045-4ca0-93bd-3a35b591634d", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:01:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "365" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "b44cb3d3-61af-482e-888b-bc292837d3c9", - "lastUpdatedDateTime": "2022-06-28T17:44:50Z", - "createdDateTime": "2022-06-28T17:44:49Z", - "expirationDateTime": "2022-06-29T17:44:49Z", + "jobId": "61220978-479a-45ae-8020-4de8e6d666d5", + "lastUpdateDateTime": "2022-10-17T19:01:38Z", + "createdDateTime": "2022-10-17T19:01:38Z", + "expirationDateTime": "2022-10-18T19:01:38Z", "status": "succeeded", "errors": [], "tasks": { @@ -178,7 +178,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:44:50.6001133Z", + "lastUpdateDateTime": "2022-10-17T19:01:38.7604381Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_poller_metadata.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_poller_metadata.json index ced33cc7116d..3adff627e078 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_poller_metadata.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_poller_metadata.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "479", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "displayName": "testing", @@ -36,41 +36,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b69593a3-c6ef-4499-a633-f02e4bbd0c9a", + "apim-request-id": "0a9692bc-9be6-4551-9036-96a2539f109a", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:01:48 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/07d0acd6-b3a3-454a-ac1e-18a4f207f14c?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:01 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/29dea1ac-1956-47d3-a2fd-cc88ef06ab92?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "387" + "x-envoy-upstream-service-time": "349" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/07d0acd6-b3a3-454a-ac1e-18a4f207f14c?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/29dea1ac-1956-47d3-a2fd-cc88ef06ab92?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73bc3c22-78a5-4092-a91d-4cf1a878aa13", - "Content-Length": "1435", + "apim-request-id": "c3a8859e-6822-40b0-b65b-79983f321afe", + "Content-Length": "1434", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:01:52 GMT", + "Date": "Mon, 17 Oct 2022 19:01:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { - "jobId": "07d0acd6-b3a3-454a-ac1e-18a4f207f14c", - "lastUpdatedDateTime": "2022-06-28T17:01:49Z", - "createdDateTime": "2022-06-28T17:01:48Z", - "expirationDateTime": "2022-06-29T17:01:48Z", + "jobId": "29dea1ac-1956-47d3-a2fd-cc88ef06ab92", + "lastUpdateDateTime": "2022-10-17T19:01:02Z", + "createdDateTime": "2022-10-17T19:01:01Z", + "expirationDateTime": "2022-10-18T19:01:01Z", "status": "succeeded", "errors": [], "displayName": "testing", @@ -83,7 +83,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:01:49.0142904Z", + "lastUpdateDateTime": "2022-10-17T19:01:02.9310835Z", "status": "succeeded", "results": { "statistics": { @@ -128,13 +128,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -142,6 +135,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities.json index 022099a10970..20e6c1c3a657 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -45,41 +45,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c2bf393b-5f47-403c-b2c6-0be2ce2e9712", + "apim-request-id": "c1ca2263-be61-4f82-b29f-111add6ef577", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 01:22:30 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b563471a-57b2-499e-99f8-bf7e820ef016?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:07 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/487c5832-bfda-4304-a41e-b4b136d053fe?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-envoy-upstream-service-time": "368" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/b563471a-57b2-499e-99f8-bf7e820ef016?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/487c5832-bfda-4304-a41e-b4b136d053fe?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e874005a-a33e-43a0-a9cf-45acb22bb32e", - "Content-Length": "3488", + "apim-request-id": "c8139314-fb49-4b2f-8052-8812370af395", + "Content-Length": "3487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 01:22:35 GMT", + "Date": "Mon, 17 Oct 2022 19:01:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { - "jobId": "b563471a-57b2-499e-99f8-bf7e820ef016", - "lastUpdatedDateTime": "2022-06-23T01:22:31Z", - "createdDateTime": "2022-06-23T01:22:30Z", - "expirationDateTime": "2022-06-24T01:22:30Z", + "jobId": "487c5832-bfda-4304-a41e-b4b136d053fe", + "lastUpdateDateTime": "2022-10-17T19:01:08Z", + "createdDateTime": "2022-10-17T19:01:07Z", + "expirationDateTime": "2022-10-18T19:01:07Z", "status": "succeeded", "errors": [], "tasks": { @@ -91,7 +91,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T01:22:31.6498194Z", + "lastUpdateDateTime": "2022-10-17T19:01:08.7198099Z", "status": "succeeded", "results": { "statistics": { @@ -115,6 +115,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -129,20 +136,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -157,13 +150,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -171,6 +157,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -185,13 +185,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -199,13 +192,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -219,6 +205,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -258,13 +258,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -272,6 +265,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities_continuation_token.json index acfc7baf440c..ef39b553ac52 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_recognize_custom_entities_continuation_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -45,41 +45,41 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cd596b7c-5b58-450b-bce7-6b032842d974", + "apim-request-id": "0d9a620b-aebc-4a3c-9ed7-f50f1084ad5c", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:05:35 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5b0895a4-c7f2-412e-b448-7f5fc69e0f71?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:13 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/467c74f8-36dd-4553-aebf-8132decf1f67?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-envoy-upstream-service-time": "263" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5b0895a4-c7f2-412e-b448-7f5fc69e0f71?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/467c74f8-36dd-4553-aebf-8132decf1f67?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86f90753-0446-41de-a5b8-a470fb814b28", - "Content-Length": "3488", + "apim-request-id": "0f267b97-6be8-47b4-8345-3e0cd26e7495", + "Content-Length": "3487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:05:40 GMT", + "Date": "Mon, 17 Oct 2022 19:01:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "5b0895a4-c7f2-412e-b448-7f5fc69e0f71", - "lastUpdatedDateTime": "2022-06-23T02:05:36Z", - "createdDateTime": "2022-06-23T02:05:35Z", - "expirationDateTime": "2022-06-24T02:05:35Z", + "jobId": "467c74f8-36dd-4553-aebf-8132decf1f67", + "lastUpdateDateTime": "2022-10-17T19:01:14Z", + "createdDateTime": "2022-10-17T19:01:14Z", + "expirationDateTime": "2022-10-18T19:01:14Z", "status": "succeeded", "errors": [], "tasks": { @@ -91,7 +91,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:05:36.2457369Z", + "lastUpdateDateTime": "2022-10-17T19:01:14.7851523Z", "status": "succeeded", "results": { "statistics": { @@ -115,6 +115,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -129,20 +136,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -157,13 +150,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -171,6 +157,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -185,13 +185,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -199,13 +192,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -219,6 +205,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -258,13 +258,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -272,6 +265,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", @@ -338,30 +338,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5b0895a4-c7f2-412e-b448-7f5fc69e0f71?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/467c74f8-36dd-4553-aebf-8132decf1f67?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f10245b9-9eb3-4f4d-9dc9-31872cab1ca2", - "Content-Length": "3488", + "apim-request-id": "58e16a99-377d-4194-b043-fe7bed482079", + "Content-Length": "3487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:05:42 GMT", + "Date": "Mon, 17 Oct 2022 19:01:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1874" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "5b0895a4-c7f2-412e-b448-7f5fc69e0f71", - "lastUpdatedDateTime": "2022-06-23T02:05:36Z", - "createdDateTime": "2022-06-23T02:05:35Z", - "expirationDateTime": "2022-06-24T02:05:35Z", + "jobId": "467c74f8-36dd-4553-aebf-8132decf1f67", + "lastUpdateDateTime": "2022-10-17T19:01:14Z", + "createdDateTime": "2022-10-17T19:01:14Z", + "expirationDateTime": "2022-10-18T19:01:14Z", "status": "succeeded", "errors": [], "tasks": { @@ -373,7 +373,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:05:36.2457369Z", + "lastUpdateDateTime": "2022-10-17T19:01:14.7851523Z", "status": "succeeded", "results": { "statistics": { @@ -397,6 +397,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -411,20 +418,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -439,13 +432,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -453,6 +439,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -467,13 +467,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -481,13 +474,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -501,6 +487,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -540,13 +540,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -554,6 +547,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify.json index 2a9313cd0db3..4e12a2ab7d69 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,49 +36,49 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ff53d95a-1eb5-491e-8449-5649f77e0400", + "apim-request-id": "8e2a05b9-0d30-474b-9369-d2a46a7f1225", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 01:21:15 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8bb0c1bc-7890-4443-98b5-89a52b83d91e?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:20 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/59fc6d0a-12e0-45ad-9ea7-1995e34356da?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "612" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8bb0c1bc-7890-4443-98b5-89a52b83d91e?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/59fc6d0a-12e0-45ad-9ea7-1995e34356da?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43ea4b81-f618-414c-85dc-f5599404d7bc", - "Content-Length": "1106", + "apim-request-id": "9ef83e21-7f82-41f4-9536-87e78d2b7a65", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 01:21:20 GMT", + "Date": "Mon, 17 Oct 2022 19:01:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "72" }, "ResponseBody": { - "jobId": "8bb0c1bc-7890-4443-98b5-89a52b83d91e", - "lastUpdatedDateTime": "2022-06-28T01:21:17Z", - "createdDateTime": "2022-06-28T01:21:15Z", - "expirationDateTime": "2022-06-29T01:21:15Z", + "jobId": "59fc6d0a-12e0-45ad-9ea7-1995e34356da", + "lastUpdateDateTime": "2022-10-17T19:01:20Z", + "createdDateTime": "2022-10-17T19:01:20Z", + "expirationDateTime": "2022-10-18T19:01:20Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T01:21:17.224914Z", + "lastUpdateDateTime": "2022-10-17T19:01:20.7737224Z", "status": "succeeded", "results": { "statistics": { @@ -144,8 +144,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify_cont_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify_cont_token.json index cf0c398c19b0..9fdf9282d065 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify_cont_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text.pyTestCustomTexttest_single_label_classify_cont_token.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -36,49 +36,49 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cc5e9db7-a6af-48f2-84d8-2d79c937e26f", + "apim-request-id": "3522ef03-bbd6-4601-af11-a8434a9e9557", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 01:21:41 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8b6adb86-659c-4e5d-b05f-eec2389f6d23?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:25 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/33816f40-48b3-4b35-91d3-6bad37f6dd96?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-envoy-upstream-service-time": "245" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8b6adb86-659c-4e5d-b05f-eec2389f6d23?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/33816f40-48b3-4b35-91d3-6bad37f6dd96?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f50f267-574d-427c-b321-8bc433126a12", - "Content-Length": "1107", + "apim-request-id": "7bc98759-766c-4cd7-9643-b2c1632dd6f5", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 01:21:47 GMT", + "Date": "Mon, 17 Oct 2022 19:01:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { - "jobId": "8b6adb86-659c-4e5d-b05f-eec2389f6d23", - "lastUpdatedDateTime": "2022-06-28T01:21:42Z", - "createdDateTime": "2022-06-28T01:21:42Z", - "expirationDateTime": "2022-06-29T01:21:42Z", + "jobId": "33816f40-48b3-4b35-91d3-6bad37f6dd96", + "lastUpdateDateTime": "2022-10-17T19:01:26Z", + "createdDateTime": "2022-10-17T19:01:25Z", + "expirationDateTime": "2022-10-18T19:01:25Z", "status": "succeeded", "errors": [], "tasks": { @@ -90,7 +90,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T01:21:42.9731718Z", + "lastUpdateDateTime": "2022-10-17T19:01:26.9042724Z", "status": "succeeded", "results": { "statistics": { @@ -144,8 +144,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] @@ -153,30 +153,30 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8b6adb86-659c-4e5d-b05f-eec2389f6d23?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/33816f40-48b3-4b35-91d3-6bad37f6dd96?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cbf78bf-dffc-4aa8-91b0-401c463ac94a", - "Content-Length": "1107", + "apim-request-id": "0a19cda4-3564-4c9c-a30a-66662d81e06c", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 01:21:47 GMT", + "Date": "Mon, 17 Oct 2022 19:01:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "8b6adb86-659c-4e5d-b05f-eec2389f6d23", - "lastUpdatedDateTime": "2022-06-28T01:21:42Z", - "createdDateTime": "2022-06-28T01:21:42Z", - "expirationDateTime": "2022-06-29T01:21:42Z", + "jobId": "33816f40-48b3-4b35-91d3-6bad37f6dd96", + "lastUpdateDateTime": "2022-10-17T19:01:26Z", + "createdDateTime": "2022-10-17T19:01:25Z", + "expirationDateTime": "2022-10-18T19:01:25Z", "status": "succeeded", "errors": [], "tasks": { @@ -188,7 +188,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T01:21:42.9731718Z", + "lastUpdateDateTime": "2022-10-17T19:01:26.9042724Z", "status": "succeeded", "results": { "statistics": { @@ -242,8 +242,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify.json index a029d84f9667..e84fa0d5a9a6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.9.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,40 +43,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0826218d-cf8e-4a17-ae56-c2dcc394f8e7", + "apim-request-id": "0a04a64a-485c-4ce6-9667-00a1ce7f51fc", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:45:53 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6c15ab4a-4624-431c-8d8a-2adeeecfc60b?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:02:14 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1b66a3b-20c7-402a-97d5-cb325a2052fa?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "295" + "x-envoy-upstream-service-time": "189" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6c15ab4a-4624-431c-8d8a-2adeeecfc60b?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/c1b66a3b-20c7-402a-97d5-cb325a2052fa?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.9.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04a56797-b1b2-4abd-8133-1ec7d77833b7", - "Content-Length": "1007", + "apim-request-id": "613146ed-199a-467f-8c75-a3c4efd081d6", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:45:58 GMT", + "Date": "Mon, 17 Oct 2022 19:02:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { - "jobId": "6c15ab4a-4624-431c-8d8a-2adeeecfc60b", - "lastUpdatedDateTime": "2022-06-28T17:45:54Z", - "createdDateTime": "2022-06-28T17:45:54Z", - "expirationDateTime": "2022-06-29T17:45:54Z", + "jobId": "c1b66a3b-20c7-402a-97d5-cb325a2052fa", + "lastUpdateDateTime": "2022-10-17T19:02:15Z", + "createdDateTime": "2022-10-17T19:02:14Z", + "expirationDateTime": "2022-10-18T19:02:14Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:45:54.9670368Z", + "lastUpdateDateTime": "2022-10-17T19:02:15.6453084Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify_cont_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify_cont_token.json index 8078343a479e..09083f231efc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify_cont_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_multi_label_classify_cont_token.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "932", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -43,40 +43,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7d82fb7e-be72-44f1-98a9-dc5abf4ec1fd", + "apim-request-id": "721a25fb-1eb0-4a9f-a4ab-1bd83d666943", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:46:27 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ff8da665-9545-443a-b249-b9fce2dcfd95?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:02:20 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4505d898-c85a-4bfd-86c0-5c261a569d8b?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "376" + "x-envoy-upstream-service-time": "300" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ff8da665-9545-443a-b249-b9fce2dcfd95?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/4505d898-c85a-4bfd-86c0-5c261a569d8b?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b83a9329-3078-4031-a4fd-fa2271ccc2df", - "Content-Length": "1007", + "apim-request-id": "4c2912fe-eb1a-457c-94b1-223b0e7a9e0d", + "Content-Length": "1006", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:46:32 GMT", + "Date": "Mon, 17 Oct 2022 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "ff8da665-9545-443a-b249-b9fce2dcfd95", - "lastUpdatedDateTime": "2022-06-28T17:46:28Z", - "createdDateTime": "2022-06-28T17:46:27Z", - "expirationDateTime": "2022-06-29T17:46:27Z", + "jobId": "4505d898-c85a-4bfd-86c0-5c261a569d8b", + "lastUpdateDateTime": "2022-10-17T19:02:21Z", + "createdDateTime": "2022-10-17T19:02:20Z", + "expirationDateTime": "2022-10-18T19:02:20Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomMultiLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:46:28.0393944Z", + "lastUpdateDateTime": "2022-10-17T19:02:21.2447775Z", "status": "succeeded", "results": { "statistics": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_poller_metadata.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_poller_metadata.json index 4f8d5f90f16d..5998edcc009a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_poller_metadata.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_poller_metadata.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "479", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "displayName": "testing", @@ -35,40 +35,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "24150eee-10dd-42b1-83cc-a36bfc34ac8c", + "apim-request-id": "38640e58-9fc2-406f-8c84-1d8ffa6fa457", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 17:03:25 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2e04c59b-e178-4e4d-9c6b-04e6eb710a41?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:43 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8053b22a-89b9-45bf-8e4e-b4cac9590704?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "234" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/2e04c59b-e178-4e4d-9c6b-04e6eb710a41?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/8053b22a-89b9-45bf-8e4e-b4cac9590704?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51c2b971-3127-4918-81a8-a4242404007c", - "Content-Length": "1435", + "apim-request-id": "599835c9-20df-4791-a112-63867b65e5a7", + "Content-Length": "1434", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 17:03:30 GMT", + "Date": "Mon, 17 Oct 2022 19:01:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { - "jobId": "2e04c59b-e178-4e4d-9c6b-04e6eb710a41", - "lastUpdatedDateTime": "2022-06-28T17:03:26Z", - "createdDateTime": "2022-06-28T17:03:25Z", - "expirationDateTime": "2022-06-29T17:03:25Z", + "jobId": "8053b22a-89b9-45bf-8e4e-b4cac9590704", + "lastUpdateDateTime": "2022-10-17T19:01:44Z", + "createdDateTime": "2022-10-17T19:01:43Z", + "expirationDateTime": "2022-10-18T19:01:43Z", "status": "succeeded", "errors": [], "displayName": "testing", @@ -81,7 +81,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T17:03:26.3632213Z", + "lastUpdateDateTime": "2022-10-17T19:01:44.5298979Z", "status": "succeeded", "results": { "statistics": { @@ -126,13 +126,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -140,6 +133,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities.json index 8aa64e636cf6..1abb7bca82e5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,40 +44,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "04d1e713-2dae-4ce5-8fd5-1e6ad44c73e5", + "apim-request-id": "8d49bebc-1566-4713-893a-ab2fe755af2c", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 01:22:50 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ef16dc84-b18a-4fb2-8fc5-b72b5a1c03b0?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:49 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/dca7c54e-55f0-4d15-9d8a-868198c388c8?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "209" + "x-envoy-upstream-service-time": "339" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ef16dc84-b18a-4fb2-8fc5-b72b5a1c03b0?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/dca7c54e-55f0-4d15-9d8a-868198c388c8?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4413897-6f1a-4a3d-91f0-2b9479b6cf2c", - "Content-Length": "3488", + "apim-request-id": "4dea7a1a-c1e0-4544-9209-6b161ced39d6", + "Content-Length": "3487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 01:22:56 GMT", + "Date": "Mon, 17 Oct 2022 19:01:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "ef16dc84-b18a-4fb2-8fc5-b72b5a1c03b0", - "lastUpdatedDateTime": "2022-06-23T01:22:51Z", - "createdDateTime": "2022-06-23T01:22:51Z", - "expirationDateTime": "2022-06-24T01:22:51Z", + "jobId": "dca7c54e-55f0-4d15-9d8a-868198c388c8", + "lastUpdateDateTime": "2022-10-17T19:01:50Z", + "createdDateTime": "2022-10-17T19:01:49Z", + "expirationDateTime": "2022-10-18T19:01:49Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T01:22:51.9516981Z", + "lastUpdateDateTime": "2022-10-17T19:01:50.2796624Z", "status": "succeeded", "results": { "statistics": { @@ -113,6 +113,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -127,20 +134,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -155,13 +148,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -169,6 +155,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -183,13 +183,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -197,13 +190,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -217,6 +203,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -256,13 +256,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -270,6 +263,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities_continuation_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities_continuation_token.json index 7d481cc0bc10..bbbea574d8f8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities_continuation_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_recognize_custom_entities_continuation_token.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "954", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -44,40 +44,40 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "24ff7244-b200-44dd-aee7-e648bc387f08", + "apim-request-id": "5846e36e-d32a-4807-9e9e-898efedd476e", "Content-Length": "0", - "Date": "Thu, 23 Jun 2022 02:09:10 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/685362d8-a64f-463c-a2a1-74cf939cbee6?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:01:56 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/996ffcaf-fea3-4bf8-863b-6610dbd2e8a5?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "1428" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/685362d8-a64f-463c-a2a1-74cf939cbee6?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/996ffcaf-fea3-4bf8-863b-6610dbd2e8a5?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18ed2991-4ee6-495d-b6ee-0c307d645d08", - "Content-Length": "3488", + "apim-request-id": "a357e004-a753-408a-8167-f43b20e6d454", + "Content-Length": "3487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 23 Jun 2022 02:09:34 GMT", + "Date": "Mon, 17 Oct 2022 19:02:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { - "jobId": "685362d8-a64f-463c-a2a1-74cf939cbee6", - "lastUpdatedDateTime": "2022-06-23T02:09:11Z", - "createdDateTime": "2022-06-23T02:09:10Z", - "expirationDateTime": "2022-06-24T02:09:10Z", + "jobId": "996ffcaf-fea3-4bf8-863b-6610dbd2e8a5", + "lastUpdateDateTime": "2022-10-17T19:01:57Z", + "createdDateTime": "2022-10-17T19:01:55Z", + "expirationDateTime": "2022-10-18T19:01:55Z", "status": "succeeded", "errors": [], "tasks": { @@ -89,7 +89,7 @@ { "kind": "CustomEntityRecognitionLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-23T02:09:11.1587289Z", + "lastUpdateDateTime": "2022-10-17T19:01:57.2545533Z", "status": "succeeded", "results": { "statistics": { @@ -113,6 +113,13 @@ "length": 10, "confidenceScore": 0.05 }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, { "text": "Office", "category": "restaurant_name", @@ -127,20 +134,6 @@ "length": 3, "confidenceScore": 0.04 }, - { - "text": "Accountability", - "category": "geographic_poi", - "offset": 34, - "length": 14, - "confidenceScore": 0.07 - }, - { - "text": "natural", - "category": "geographic_poi", - "offset": 106, - "length": 7, - "confidenceScore": 0.04 - }, { "text": "dramatic", "category": "sort", @@ -155,13 +148,6 @@ "length": 3, "confidenceScore": 0.03 }, - { - "text": "gas", - "category": "restaurant_type", - "offset": 114, - "length": 3, - "confidenceScore": 0.09 - }, { "text": "and", "category": "served_dish", @@ -169,6 +155,20 @@ "length": 3, "confidenceScore": 0.07 }, + { + "text": "natural", + "category": "geographic_poi", + "offset": 106, + "length": 7, + "confidenceScore": 0.04 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, { "text": "development", "category": "object_type", @@ -183,13 +183,6 @@ "length": 7, "confidenceScore": 0.07 }, - { - "text": "protection", - "category": "state", - "offset": 267, - "length": 10, - "confidenceScore": 0.05 - }, { "text": "lands", "category": "poi", @@ -197,13 +190,6 @@ "length": 5, "confidenceScore": 0.04 }, - { - "text": "BLM", - "category": "poi", - "offset": 202, - "length": 3, - "confidenceScore": 0.07 - }, { "text": "the", "category": "timeRange", @@ -217,6 +203,20 @@ "offset": 156, "length": 14, "confidenceScore": 0.54 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 } ], "warnings": [] @@ -256,13 +256,6 @@ "length": 18, "confidenceScore": 0.07 }, - { - "text": "IFIC", - "category": "geographic_poi", - "offset": 91, - "length": 4, - "confidenceScore": 0.05 - }, { "text": "Information Council", "category": "restaurant_name", @@ -270,6 +263,13 @@ "length": 19, "confidenceScore": 0.1 }, + { + "text": "IFIC", + "category": "geographic_poi", + "offset": 91, + "length": 4, + "confidenceScore": 0.05 + }, { "text": "Washington, D.C.", "category": "state", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify.json index 133032ac4e1f..19246388f3df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -35,48 +35,48 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "42f05e98-c30e-40c5-9831-0f69f4e926a8", + "apim-request-id": "d582871e-1412-4a35-af32-058746ce13a3", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 01:25:37 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ce306570-63a1-46a8-bfe6-e77f107a3f25?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:02:02 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6f8ba509-5440-4f3c-812b-7a28794e0d0f?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "213" + "x-envoy-upstream-service-time": "183" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/ce306570-63a1-46a8-bfe6-e77f107a3f25?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/6f8ba509-5440-4f3c-812b-7a28794e0d0f?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc596133-16e0-4a3e-bc87-ba9233a14b5c", - "Content-Length": "1107", + "apim-request-id": "3d3a6104-dac6-4f10-b3fe-b1f76ca8d5fa", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 01:25:43 GMT", + "Date": "Mon, 17 Oct 2022 19:02:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "ce306570-63a1-46a8-bfe6-e77f107a3f25", - "lastUpdatedDateTime": "2022-06-28T01:25:39Z", - "createdDateTime": "2022-06-28T01:25:38Z", - "expirationDateTime": "2022-06-29T01:25:38Z", + "jobId": "6f8ba509-5440-4f3c-812b-7a28794e0d0f", + "lastUpdateDateTime": "2022-10-17T19:02:03Z", + "createdDateTime": "2022-10-17T19:02:02Z", + "expirationDateTime": "2022-10-18T19:02:02Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T01:25:39.3865918Z", + "lastUpdateDateTime": "2022-10-17T19:02:03.9102671Z", "status": "succeeded", "results": { "statistics": { @@ -142,8 +142,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify_cont_token.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify_cont_token.json index f9933b837736..a7b1cea0adb0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify_cont_token.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_custom_text_async.pyTestCustomTextAsynctest_single_label_classify_cont_token.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "Content-Length": "941", + "Content-Length": "935", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "analysisInput": { @@ -35,48 +35,48 @@ "taskName": "0", "kind": "CustomSingleLabelClassification", "parameters": { - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f7c60d82-7a53-47bd-b638-82cae155c386", + "apim-request-id": "7783b6f7-5dd9-4472-863c-445bc24ff615", "Content-Length": "0", - "Date": "Tue, 28 Jun 2022 01:26:08 GMT", - "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/06c84c3d-8e9a-45f4-bad6-61a79e690b11?api-version=2022-05-01", + "Date": "Mon, 17 Oct 2022 19:02:08 GMT", + "operation-location": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5adb9632-2e00-4df1-99d0-9a5a5101dc85?api-version=2022-10-01-preview", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "456" + "x-envoy-upstream-service-time": "244" }, "ResponseBody": null }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/06c84c3d-8e9a-45f4-bad6-61a79e690b11?api-version=2022-05-01\u0026showStats=True", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/analyze-text/jobs/5adb9632-2e00-4df1-99d0-9a5a5101dc85?api-version=2022-10-01-preview\u0026showStats=True", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "427c9105-b47c-4278-8958-307411ca8de0", - "Content-Length": "1107", + "apim-request-id": "e5d67bb9-ca03-4d9d-a544-1595779a3a70", + "Content-Length": "1100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 28 Jun 2022 01:26:13 GMT", + "Date": "Mon, 17 Oct 2022 19:02:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { - "jobId": "06c84c3d-8e9a-45f4-bad6-61a79e690b11", - "lastUpdatedDateTime": "2022-06-28T01:26:09Z", - "createdDateTime": "2022-06-28T01:26:08Z", - "expirationDateTime": "2022-06-29T01:26:08Z", + "jobId": "5adb9632-2e00-4df1-99d0-9a5a5101dc85", + "lastUpdateDateTime": "2022-10-17T19:02:09Z", + "createdDateTime": "2022-10-17T19:02:08Z", + "expirationDateTime": "2022-10-18T19:02:08Z", "status": "succeeded", "errors": [], "tasks": { @@ -88,7 +88,7 @@ { "kind": "CustomSingleLabelClassificationLROResults", "taskName": "0", - "lastUpdateDateTime": "2022-06-28T01:26:09.6166011Z", + "lastUpdateDateTime": "2022-10-17T19:02:09.5641101Z", "status": "succeeded", "results": { "statistics": { @@ -142,8 +142,8 @@ } ], "errors": [], - "projectName": "single_category_classify_project_name", - "deploymentName": "single_category_classify_project_name" + "projectName": "single_label_classify_project_name", + "deploymentName": "single_label_classify_project_name" } } ] diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_dict.json index 4979f58bc1c9..50672e5b28c4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "420", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -41,14 +41,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f305e43-f96e-45e2-b1e7-64b6835b7f83", + "apim-request-id": "122d104d-c76e-4b5c-bce8-484ed0c990a0", "Content-Length": "858", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:17 GMT", + "Date": "Mon, 17 Oct 2022 19:02:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json index 6107c07a20d7..220b7319e10c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "419", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -41,14 +41,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d616f66a-1869-4252-b94c-b920967e1a88", + "apim-request-id": "849d8fb1-8641-469e-8b36-aeccc6e93dea", "Content-Length": "519", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:17 GMT", + "Date": "Mon, 17 Oct 2022 19:02:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_credentials.json index 3c6e18ef7cda..473451d94049 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,10 +26,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "26813e9e-21b5-4f49-a9f5-9bec66cc401f", + "apim-request-id": "4cd2c605-152c-425b-8b02-678a883457d0", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:33:19 GMT" + "Date": "Mon, 17 Oct 2022 19:02:29 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_model_version_error.json index 45a57408090c..d4461e01d2c7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "186", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -28,9 +28,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "97967418-2c03-4f5f-846b-d82775b319d8", + "apim-request-id": "eb282443-5782-4a4b-9de3-dd6904f434fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:25 GMT", + "Date": "Mon, 17 Oct 2022 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -42,7 +42,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2020-09-01,2021-01-05,2021-11-20. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2020-09-01,2021-01-05,2021-11-20,2022-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit.json index a96ee81bc8f5..8bbcab38c946 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "61971", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -5271,13 +5271,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "82409b14-054f-4469-93a8-7bc7437d07c8", + "apim-request-id": "ed9f8ee0-0f49-4e2d-b291-9d0586cebd34", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:20 GMT", + "Date": "Mon, 17 Oct 2022 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit_error.json index b1d5ff91b5a2..36021ab3d459 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "59031", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -5026,13 +5026,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e2646e41-fe89-4f9b-8154-d08b5a469910", + "apim-request-id": "18b041b2-54bb-4c81-a13c-c13b2f8dd6c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:26 GMT", + "Date": "Mon, 17 Oct 2022 19:02:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_client_passed_default_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_client_passed_default_country_hint.json index 5019b866a13e..e033ef39b1ea 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_client_passed_default_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_client_passed_default_country_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbf60915-44fe-47e2-9fa8-ffa85ffcc323", + "apim-request-id": "020a2a1f-bcfc-4dad-9b0b-b33ed81c8350", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:23 GMT", + "Date": "Mon, 17 Oct 2022 19:02:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -83,7 +84,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -91,7 +92,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -118,11 +119,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24c756d2-96ac-4653-85e1-047832b69c7a", + "apim-request-id": "13f90fb5-39a1-4f54-bda7-a2a9323a8980", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:23 GMT", + "Date": "Mon, 17 Oct 2022 19:02:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" @@ -165,7 +167,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -173,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -200,14 +202,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f333cb9-feca-496c-bf88-8ad7d15c6a0f", + "apim-request-id": "a4ddfaa8-dcfb-47e2-a51a-dc372e089d35", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:23 GMT", + "Date": "Mon, 17 Oct 2022 19:02:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_kwarg.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_kwarg.json index a10a5d225d45..081c2d44dad5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_kwarg.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_kwarg.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "177", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4063c2b4-e988-40c1-8855-49569de30a2f", + "apim-request-id": "b36e565f-5384-4c50-8ed0-80a29b6f3e88", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_none.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_none.json index 7861da5956fc..b2e139648d17 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_none.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_country_hint_none.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "152", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,14 +26,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d563ec2-793d-4040-92e4-3a62ec63370c", + "apim-request-id": "7723713e-83e9-4802-8f22-5d5b3bb7d3da", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -55,7 +56,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -63,7 +64,7 @@ "Connection": "keep-alive", "Content-Length": "152", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -80,11 +81,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43a3ca76-cc28-463d-b2f9-33e3dba98cc4", + "apim-request-id": "322de649-4132-4ce2-b081-1fc558fd9643", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" @@ -109,7 +111,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -117,7 +119,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -134,14 +136,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "769040c0-1081-43cc-8cf4-43070aaed1ca", + "apim-request-id": "8ea27351-329e-4c0f-9824-f936a2e906fd", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -163,7 +166,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -171,7 +174,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -188,14 +191,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "667f860e-b033-4ea8-bec3-37faa17c4a31", + "apim-request-id": "ac58d01b-8aab-42ad-8933-65d7bd60538f", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs.json index 6c781aca46d4..1d2f3011a2b1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "85", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cb86c8e-09a5-498e-88ec-481f3b6df8d0", + "apim-request-id": "6ca534c2-63b4-4eaf-a5dc-10e6b80066ae", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:28 GMT", + "Date": "Mon, 17 Oct 2022 19:02:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs_body_param.json index 8eb40374df9a..1d513b8eb155 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35fe380f-f286-4f8e-9c9b-bf790f3f1990", + "apim-request-id": "adecf63f-b0cd-4764-a4c9-4b53b38b50a8", "Content-Length": "206", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:29 GMT", + "Date": "Mon, 17 Oct 2022 19:02:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json index 0c9696ecbdfa..bfab67320555 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "127", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,10 +26,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b9faefe-0edd-462e-8752-b556bfbb2209", + "apim-request-id": "3e39d7bf-ada6-473d-9893-3e0b9e7b9e92", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT", + "Date": "Mon, 17 Oct 2022 19:02:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json index f0a3516c6c12..b1f3cb7e664d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "127", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,13 +26,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b6afbfc-8a6a-4a87-80fa-320550ca9a02", + "apim-request-id": "9f8ae554-33f6-4542-ae34-0bbc3300b0b1", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT", + "Date": "Mon, 17 Oct 2022 19:02:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_errors.json index 5b7fbd275a0b..b3ffa6080520 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -31,13 +31,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "261dc3f9-dde2-4bae-8c9e-d13fd2f8cdab", + "apim-request-id": "0dbbb9a4-86c1-430b-a81e-040dcd283a19", "Content-Length": "601", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:25 GMT", + "Date": "Mon, 17 Oct 2022 19:02:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_warnings.json index d4823cc34e02..1a6250c08d50 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_document_warnings.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "167", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,11 +26,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b9d37a7-7cff-4915-8939-ee1865cd8610", + "apim-request-id": "ce03073a-77ef-465d-b0c9-4e3d39fc4694", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:25 GMT", + "Date": "Mon, 17 Oct 2022 19:02:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_duplicate_ids_error.json index 66fc699a1702..71f8e1398cb6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -31,9 +31,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ae5220dc-5ed3-41cb-b5a3-024101518574", + "apim-request-id": "30a7f48e-d4b3-4ff1-9378-3366cf214cea", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:26 GMT", + "Date": "Mon, 17 Oct 2022 19:02:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_empty_credential_class.json index c9d7d31d56be..343dd899daf9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,10 +26,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "77f24393-c135-4597-ac04-c63af49d943b", + "apim-request-id": "3f0c2baf-86b7-4db9-b51b-8001984360e1", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:33:19 GMT" + "Date": "Mon, 17 Oct 2022 19:02:29 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_all_errors.json index cf555159b149..940eddcdf950 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5386", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -41,13 +41,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6353cde-afcb-4ee0-b6a8-4ee13f4b7211", + "apim-request-id": "00da0288-0ed8-4273-b556-cce214b78c81", "Content-Length": "927", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:18 GMT", + "Date": "Mon, 17 Oct 2022 19:02:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_some_errors.json index 33dbef1d4fef..3788507b13bf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "407", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -41,14 +41,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f769e6db-67b9-4ba1-aa89-92c1f4ea17c5", + "apim-request-id": "b060f85a-9fa9-4e7a-82a1-2315d1641621", "Content-Length": "695", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:33:18 GMT", + "Date": "Mon, 17 Oct 2022 19:02:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_docs.json index d545d937f836..1c6ff6d8aa4d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "149", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,13 +26,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee738aa6-eef6-426c-8eb6-58970f5ad5c8", + "apim-request-id": "527b4c15-31e7-40e7-ab5c-38c4d85f8040", "Content-Length": "325", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_method.json index f24cc5554c25..51879bd002ac 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_invalid_country_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "149", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,10 +26,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "faf26e9c-155a-418b-ac1b-8c4192f8797e", + "apim-request-id": "60cc99bf-729a-4bb9-a4fe-ad825b2cecc8", "Content-Length": "325", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:27 GMT", + "Date": "Mon, 17 Oct 2022 19:02:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_out_of_order_ids.json index d5734178ebae..276cc63b95ea 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "322", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -46,11 +46,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b42c3192-239d-42c7-856d-d673c9d70a6b", + "apim-request-id": "f87a96b7-502e-4236-92d9-d3eda0f7de8a", "Content-Length": "718", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:19 GMT", + "Date": "Mon, 17 Oct 2022 19:02:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_output_same_order_as_input.json index e755b1ed45c6..2fe1cc748047 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "330", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -46,14 +46,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d04514b-12ba-4282-bca4-dcf793fb2bbb", + "apim-request-id": "8af27035-0fe6-4d2d-ad98-b6dfa487c02b", "Content-Length": "621", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:33:18 GMT", + "Date": "Mon, 17 Oct 2022 19:02:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_pass_cls.json index 7e71bf9da36a..be6e564a5755 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "155", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -26,14 +26,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74d78be3-3d54-470a-acb2-cf9257195de9", + "apim-request-id": "ebdc2bfe-b1c5-495c-a022-243d7d938ec7", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:28 GMT", + "Date": "Mon, 17 Oct 2022 19:02:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_passing_only_string.json index 8c659f19d59c..c0df954cfad7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "466", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -46,14 +46,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25f24f6b-21a7-41c2-b9ea-31a049f2b8d7", + "apim-request-id": "7d5d8bee-de79-4c06-95bf-9a38f640f72c", "Content-Length": "681", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:18 GMT", + "Date": "Mon, 17 Oct 2022 19:02:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json index b9301f169e16..05cb093c0ab1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "311", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "457f07d5-bbf8-4d18-8084-1596966be2fa", + "apim-request-id": "21521917-f0b9-4715-a350-42be2b089631", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:22 GMT", + "Date": "Mon, 17 Oct 2022 19:02:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_rotate_subscription_key.json index 14cc4f5978ad..9a88b4a83870 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bf81bc5-0135-4195-91e1-ce2d9ce43e7f", + "apim-request-id": "1aec1af4-ee0b-40a5-9303-daed51ea9672", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT", + "Date": "Mon, 17 Oct 2022 19:02:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -83,7 +84,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -91,7 +92,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -118,10 +119,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "b53e76bb-4634-450e-9c79-4cc8cf61cc85", + "apim-request-id": "b62ef55d-f90b-4e2a-8820-855272fbcd68", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT" + "Date": "Mon, 17 Oct 2022 19:02:34 GMT" }, "ResponseBody": { "error": { @@ -131,7 +132,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -139,7 +140,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -166,14 +167,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c81cb21-e405-402d-8b79-60fa17292084", + "apim-request-id": "90e0fda5-41fb-44c8-b62c-28d32aa58f3d", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT", + "Date": "Mon, 17 Oct 2022 19:02:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_show_stats_and_model_version.json index 7349ea4ac32c..665e4dbf8213 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98b26eba-e6c4-43ff-b453-326411efa23b", + "apim-request-id": "a48cc5b3-c043-4c92-9750-0b307606f795", "Content-Length": "1054", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:20 GMT", + "Date": "Mon, 17 Oct 2022 19:02:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json index 28c14a14fd63..81608f167c61 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "78", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,10 +22,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2871d0ae-32b3-4dc2-9b74-7c72debf7107", + "apim-request-id": "95fed73d-18cf-44b5-acec-9f783bb624b6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:33:28 GMT", + "Date": "Mon, 17 Oct 2022 19:02:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_user_agent.json index baa112befc8e..082932067713 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d188e0f0-d979-47ff-8951-84baddcd9ea4", + "apim-request-id": "edbbf648-92d8-47af-9a23-512b7d1b6a0c", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:24 GMT", + "Date": "Mon, 17 Oct 2022 19:02:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint.json index e55f81ec2955..d5695f73dd06 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "354", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cabf0ef-b1ac-4885-8ae6-0edaaa9db68b", + "apim-request-id": "760c1dee-d4b3-475b-b2ef-d0c81e091648", "Content-Length": "414", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:20 GMT", + "Date": "Mon, 17 Oct 2022 19:02:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json index 6d268b48a720..a85b933af47d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8659ab59-f419-4cec-ac25-feefd4359ae1", + "apim-request-id": "9c82d061-7aa8-45c8-8e47-93433e5cea87", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:22 GMT", + "Date": "Mon, 17 Oct 2022 19:02:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json index f07a5bf4fe62..b2776f8f4467 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3f42117-5931-4a3d-84a4-68728ef8828e", + "apim-request-id": "2685f5b3-80c4-479d-8fe0-cd4555426adb", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:23 GMT", + "Date": "Mon, 17 Oct 2022 19:02:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json index e78c988f7f4e..5200e646d3d3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "328", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14ad5053-dba4-49ce-b520-68ba21ee38a3", + "apim-request-id": "1daa3f65-7e1e-4220-9f08-387ca2c85d24", "Content-Length": "416", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:22 GMT", + "Date": "Mon, 17 Oct 2022 19:02:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json index 32ef5a8becde..754d42d3c65a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "328", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e033d6a6-2375-436e-af3c-c5d386aa7207", + "apim-request-id": "8985f42d-887e-442e-809f-c5465e4b0161", "Content-Length": "416", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:23 GMT", + "Date": "Mon, 17 Oct 2022 19:02:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json index 2347e43f0041..7bf24550f3ed 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "348", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -36,11 +36,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ee06aa4-e638-4eba-a130-5175df071afa", + "apim-request-id": "daa619de-4d62-4099-bcb6-6a34aeffa2c7", "Content-Length": "414", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:22 GMT", + "Date": "Mon, 17 Oct 2022 19:02:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_dict.json index 7d721899ca0d..bf5c11febab0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "420", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -40,14 +40,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7245ce6e-dc81-4d8c-b90d-a65a46182adc", + "apim-request-id": "a36df1c3-a3ab-4828-966c-5e19cf8b6564", "Content-Length": "858", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:55 GMT", + "Date": "Mon, 17 Oct 2022 19:02:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json index 4680072900c0..69703fc27be7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "419", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -40,14 +40,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c47ace4d-7323-4c07-bf14-bb1f8337c7d5", + "apim-request-id": "93618a0a-6037-42ee-9c24-7331468463d5", "Content-Length": "519", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:55 GMT", + "Date": "Mon, 17 Oct 2022 19:02:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_credentials.json index 722d5cb6f148..e6c05277b36e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,10 +25,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "aa102d45-ace9-4983-a406-3da10b7d2235", + "apim-request-id": "98a88291-e06c-4156-a98d-36b8aef0b7e7", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:33:57 GMT" + "Date": "Mon, 17 Oct 2022 19:02:43 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_model_version_error.json index 7e4d02193267..f397467ffc6a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "186", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -27,9 +27,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d7d6883b-0579-4226-998b-9730fb8b3f74", + "apim-request-id": "962f7393-8add-4957-9a64-68e9443d2de0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:02 GMT", + "Date": "Mon, 17 Oct 2022 19:02:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -41,7 +41,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2020-09-01,2021-01-05,2021-11-20. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2020-09-01,2021-01-05,2021-11-20,2022-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit.json index b9ccfdbcd419..05831c673fc8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "61971", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -5270,13 +5270,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1a8b7a76-ce25-40ad-a650-c20bacf02f41", + "apim-request-id": "683862a5-f24d-4c07-8245-96b216957d8c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:58 GMT", + "Date": "Mon, 17 Oct 2022 19:02:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit_error.json index bde2e8b146d4..4527da79f2a6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "59031", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -5025,13 +5025,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "f24d1996-6724-4a33-873c-8fca94de9fd0", + "apim-request-id": "92c86fc5-889d-4922-a9b2-efb98f2aa459", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:03 GMT", + "Date": "Mon, 17 Oct 2022 19:02:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_client_passed_default_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_client_passed_default_country_hint.json index 84c5dcc3a034..39d33677fbd8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_client_passed_default_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_client_passed_default_country_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69748246-1f8b-4507-9650-554f4d510352", + "apim-request-id": "d1c560c8-d188-4daf-9366-7106726ada13", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:00 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -82,14 +83,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -116,14 +117,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbc4c87a-94d6-424e-89cf-021667789c4d", + "apim-request-id": "91357656-7af8-4c7f-937d-91a0af069bfd", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:00 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -163,14 +165,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -197,14 +199,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4941440d-6ca6-43b9-aee3-83d0bc421353", + "apim-request-id": "7a566523-9913-47dc-a16c-e6f1e709f58b", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:00 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_kwarg.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_kwarg.json index e335f6d13851..4443af3155a4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_kwarg.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_kwarg.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "177", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -27,11 +27,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b843ad1-8546-4849-a580-b13eb4426b9b", + "apim-request-id": "588483d4-4645-473d-bc76-d19a2ab4ec47", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_none.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_none.json index 08f76cf82765..f9bb0dfa8bbf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_none.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_country_hint_none.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "152", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,14 +25,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28fe916a-9263-4c75-b22d-e12c105ba1a3", + "apim-request-id": "025249dc-391e-447a-a241-1d8edd98a165", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -54,14 +55,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "152", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -78,11 +79,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ebf4b91-fb0e-41d9-aba5-93cbf4b6befa", + "apim-request-id": "52e8ebc4-4951-4891-923a-b41ebd200800", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "9" @@ -107,14 +109,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -131,14 +133,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "908fdfe9-687e-405e-9abc-6b41e067dfdf", + "apim-request-id": "95b4fb12-22c1-4c30-8b7c-c3113e5c265d", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -160,14 +163,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -184,14 +187,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b00614d1-5636-49bf-a6cc-738817cc83cb", + "apim-request-id": "71924de9-e32a-4e8a-9573-def56f669b5f", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs.json index 37fffe6fc365..d78aa685082a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "85", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6832c8ee-70c6-44c7-8851-1de40ddcdb92", + "apim-request-id": "5265d13f-6f51-4f7d-bcc8-217ca1fe9d7b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:05 GMT", + "Date": "Mon, 17 Oct 2022 19:02:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs_body_param.json index 53d157985d9d..e62f939a571e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf48b2ab-b396-4c26-b5da-9130f9f8bfe2", + "apim-request-id": "103c5d0c-f848-45ef-8242-0fd942313eaa", "Content-Length": "206", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:05 GMT", + "Date": "Mon, 17 Oct 2022 19:02:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json index b94dd321362e..4557e959ae5f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "127", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,13 +25,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cf98e94-ef64-45ea-a922-9a08a43f2359", + "apim-request-id": "ca08a933-db58-4ba9-84e7-28bd92be8723", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:01 GMT", + "Date": "Mon, 17 Oct 2022 19:02:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json index 98acf2945dca..ff223e1164d0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "127", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,13 +25,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "361428ed-d490-4f3a-8828-45e0b261d731", + "apim-request-id": "a63749da-872c-4e63-a2d4-1ed37a1ba549", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:02 GMT", + "Date": "Mon, 17 Oct 2022 19:02:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_errors.json index 1cd1a4603681..31e38b7fae87 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5294", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -30,13 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57d5c4eb-bdcf-4504-8078-b499158ce5ec", + "apim-request-id": "178a1413-a224-45dd-ad2d-a97fd52c291c", "Content-Length": "601", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:02 GMT", + "Date": "Mon, 17 Oct 2022 19:02:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_warnings.json index 961e28f23199..048948065f94 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_document_warnings.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "167", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,14 +25,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65e9559f-d563-400a-bd59-56daa6d0b67a", + "apim-request-id": "a6cf751b-1f09-4ce7-99ca-6b405c1116b9", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:02 GMT", + "Date": "Mon, 17 Oct 2022 19:02:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_duplicate_ids_error.json index de0b06c2ea80..1215fa48e828 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "df551ae9-5002-421e-9b4a-7911d8ec322b", + "apim-request-id": "7170ee7b-d8f9-4783-aa53-7231b71e6199", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:03 GMT", + "Date": "Mon, 17 Oct 2022 19:02:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_empty_credential_class.json index e6e8345c668d..5c3f536bd464 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,10 +25,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "27a57848-ca1f-4ecc-b384-c0b14792c42d", + "apim-request-id": "e37a7ea0-7f96-4f7b-bb97-95708e17a2b2", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:33:57 GMT" + "Date": "Mon, 17 Oct 2022 19:02:43 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_all_errors.json index e3c01b0f03bb..c604008de885 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5386", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -40,13 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f3e3c33-7113-4e14-a785-ea227be3130d", + "apim-request-id": "838583f5-e4ae-442d-ae80-f405b40db4d8", "Content-Length": "927", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:33:56 GMT", + "Date": "Mon, 17 Oct 2022 19:02:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_some_errors.json index 81688323e140..b6fd81912a82 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "407", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -40,11 +40,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "466bbb89-3acc-413b-a047-531c1e20851f", + "apim-request-id": "b06f80c4-cd9f-4ba5-adc0-c3606221a1d1", "Content-Length": "695", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:33:56 GMT", + "Date": "Mon, 17 Oct 2022 19:02:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "9" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_docs.json index deae1a5f8ab0..9ce71a61e5c5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "149", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,13 +25,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e809d84f-5574-4e1f-b8c5-d368f255dee1", + "apim-request-id": "cebd5b24-cc38-441c-a8f8-7b89f143a504", "Content-Length": "325", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_method.json index 62cc5549920d..638a3b860912 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_invalid_country_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "149", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,10 +25,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4436181d-2c8c-4f8f-8763-cd821aec9ac2", + "apim-request-id": "8c266af8-654b-455c-bce6-9878728317b8", "Content-Length": "325", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:34:04 GMT", + "Date": "Mon, 17 Oct 2022 19:02:50 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_out_of_order_ids.json index 2739c8720a13..3552d03af4e7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "322", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -45,14 +45,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfd64cfc-b7e5-4c41-b7b3-22f9238fea86", + "apim-request-id": "297066b8-8e73-4426-88c2-867db594ca01", "Content-Length": "718", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:57 GMT", + "Date": "Mon, 17 Oct 2022 19:02:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_output_same_order_as_input.json index db9572cd1727..cdb3d5ef9ff7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "330", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -45,11 +45,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "838138a1-f8d2-4c06-8097-ef27f554e527", + "apim-request-id": "c801a425-eead-4470-8997-321bb4006527", "Content-Length": "621", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:33:56 GMT", + "Date": "Mon, 17 Oct 2022 19:02:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_pass_cls.json index a9bda7d01fea..4bf5d45e0e58 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "155", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -25,14 +25,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b1f4d15-0f6c-4d82-92f3-0d1c7f349a39", + "apim-request-id": "49d702d2-84e4-42d8-899a-178e0f3870df", "Content-Length": "205", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:05 GMT", + "Date": "Mon, 17 Oct 2022 19:02:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_passing_only_string.json index ff3735435f33..7d24114c9a5d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "466", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -45,14 +45,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03520e5-10f1-4876-aad8-f026b99873be", + "apim-request-id": "0068c7c1-093a-42e9-a28d-6b78e1efcae4", "Content-Length": "681", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:55 GMT", + "Date": "Mon, 17 Oct 2022 19:02:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json index bb9f84da7e3f..d8aa867195cc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_per_item_dont_use_country_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "311", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,11 +35,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62e10bf7-aa45-4659-9f4c-3c12eda2d0d5", + "apim-request-id": "d1d53614-3052-41ab-a1e7-dd48859714ee", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:59 GMT", + "Date": "Mon, 17 Oct 2022 19:02:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_rotate_subscription_key.json index 982c9e633715..cbf05656aeb1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c2eeb2c-e4e8-4dbf-bd74-6310cf09338a", + "apim-request-id": "926bb41a-c9e2-470a-b114-e66b49c40bc7", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:01 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", @@ -82,14 +83,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -116,10 +117,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "1706a2e8-5080-4866-a7d0-48e9e364c8c3", + "apim-request-id": "bf22f636-1eb8-455b-b4bc-20f8cfe8b238", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:34:01 GMT" + "Date": "Mon, 17 Oct 2022 19:02:47 GMT" }, "ResponseBody": { "error": { @@ -129,14 +130,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -163,14 +164,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe6fa4df-3a1c-41f2-8fd9-6ed77a6a2805", + "apim-request-id": "86f540c9-4644-4bc6-a900-d632d5a3517e", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:01 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_show_stats_and_model_version.json index a8c1139c4a3a..3373622f57ec 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -47,11 +47,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45c74c1f-0aaf-4495-a6d0-bf1a5dba2514", + "apim-request-id": "7176f347-53ab-420b-99d4-1ec18dd0ca42", "Content-Length": "1054", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:33:58 GMT", + "Date": "Mon, 17 Oct 2022 19:02:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json index d9df912f16d6..93cb0b85ec3d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_string_index_type_not_fail_v3.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "78", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc7fe9ed-6dd3-4c4a-8588-b87d16df7d09", + "apim-request-id": "610079aa-5265-41b2-bda9-759e28f5cd80", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:05 GMT", + "Date": "Mon, 17 Oct 2022 19:02:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_user_agent.json index 0c6926cf7adb..49d3846933de 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d6b510e-361e-4e92-ac4b-423a2b16fcc5", + "apim-request-id": "0f29be0c-22ea-43be-87dc-aea204e6d564", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:01 GMT", + "Date": "Mon, 17 Oct 2022 19:02:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint.json index 589e640d47a9..03c610573961 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "354", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,11 +35,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ab619f1-63eb-4eab-b016-bbe3ec00cb9b", + "apim-request-id": "0e7d580b-b6bf-4c30-ac8a-3e5a8b17e1b9", "Content-Length": "414", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:58 GMT", + "Date": "Mon, 17 Oct 2022 19:02:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json index 2df259b22ce2..234dfa538b96 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad30cea8-f6ee-47a4-8915-4c4e70b3a13d", + "apim-request-id": "bcdd7e52-a566-407c-b73f-d392260c0f94", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:59 GMT", + "Date": "Mon, 17 Oct 2022 19:02:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json index 80152a79f4a6..adcf6d83b8fe 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "315", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82530577-e9bf-4c90-858e-4bf56259fe2e", + "apim-request-id": "0b16af25-06ad-4edc-9777-ae4e3e912246", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:00 GMT", + "Date": "Mon, 17 Oct 2022 19:02:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json index 6e8388d61816..0a4f35594c1f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "328", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce2bd58d-f72f-4c7f-97d6-796010834af9", + "apim-request-id": "47015367-bcd0-4d9a-a85a-03e470873794", "Content-Length": "416", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:59 GMT", + "Date": "Mon, 17 Oct 2022 19:02:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json index 66041d2425ca..daf238ccfc81 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_country_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "328", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a3e712c-7aa2-4f75-9b2f-9df61248411f", + "apim-request-id": "12d18520-3f78-4191-b2c6-76ec4a3f6085", "Content-Length": "416", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:34:00 GMT", + "Date": "Mon, 17 Oct 2022 19:02:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json index bd010444b2ba..ced690e5db48 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_detect_language_async.pyTestDetectLanguagetest_whole_batch_dont_use_country_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "348", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "LanguageDetection", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22c51ab5-b36d-4129-afd9-b27edc1a4646", + "apim-request-id": "9ddd0084-993c-425a-99d1-bb053e7e92ef", "Content-Length": "414", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:33:59 GMT", + "Date": "Mon, 17 Oct 2022 19:02:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "LanguageDetectionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification.json new file mode 100644 index 000000000000..27c3ad3c7a65 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "314", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "DynamicClassification", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The WHO is issuing a warning about Monkey Pox.", + "language": "en" + }, + { + "id": "1", + "text": "Mo Salah plays in Liverpool FC in England.", + "language": "en" + } + ] + }, + "parameters": { + "categories": [ + "Health", + "Politics", + "Music", + "Sports" + ] + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5450fe87-ff4d-4b32-bb0d-8c507151f230", + "Content-Length": "786", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=0,CognitiveServices.TextAnalytics.TextRecords=2", + "Date": "Mon, 31 Oct 2022 18:15:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "259", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "kind": "DynamicClassificationResults", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 0 + }, + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "Health", + "confidenceScore": 0.88 + }, + { + "category": "Music", + "confidenceScore": 0.04 + }, + { + "category": "Sports", + "confidenceScore": 0.04 + }, + { + "category": "Politics", + "confidenceScore": 0.03 + } + ], + "statistics": { + "charactersCount": 46, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classifications": [ + { + "category": "Sports", + "confidenceScore": 0.99 + }, + { + "category": "Music", + "confidenceScore": 0.0 + }, + { + "category": "Health", + "confidenceScore": 0.0 + }, + { + "category": "Politics", + "confidenceScore": 0.0 + } + ], + "statistics": { + "charactersCount": 42, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification_single.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification_single.json new file mode 100644 index 000000000000..3cbb3840d142 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification.pyTestDynamicClassificationtest_dynamic_classification_single.json @@ -0,0 +1,85 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "346", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "DynamicClassification", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The WHO is issuing a warning about Monkey Pox.", + "language": "en" + }, + { + "id": "1", + "text": "Mo Salah plays in Liverpool FC in England.", + "language": "en" + } + ] + }, + "parameters": { + "classificationType": "single", + "categories": [ + "Health", + "Politics", + "Music", + "Sports" + ] + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39b6e5e4-706a-496d-89a5-f270058d0b85", + "Content-Length": "293", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=0,CognitiveServices.TextAnalytics.TextRecords=2", + "Date": "Mon, 31 Oct 2022 18:21:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "460", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "kind": "DynamicClassificationResults", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "Health", + "confidenceScore": 0.88 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [ + { + "category": "Sports", + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification.json new file mode 100644 index 000000000000..0d40127b7310 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification.json @@ -0,0 +1,121 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "314", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "DynamicClassification", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The WHO is issuing a warning about Monkey Pox.", + "language": "en" + }, + { + "id": "1", + "text": "Mo Salah plays in Liverpool FC in England.", + "language": "en" + } + ] + }, + "parameters": { + "categories": [ + "Health", + "Politics", + "Music", + "Sports" + ] + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "54a767ee-0785-4f2b-9ada-13944ce33b46", + "Content-Length": "786", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=0,CognitiveServices.TextAnalytics.TextRecords=2", + "Date": "Mon, 31 Oct 2022 18:26:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "391", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "kind": "DynamicClassificationResults", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 0 + }, + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "Health", + "confidenceScore": 0.88 + }, + { + "category": "Music", + "confidenceScore": 0.04 + }, + { + "category": "Sports", + "confidenceScore": 0.04 + }, + { + "category": "Politics", + "confidenceScore": 0.03 + } + ], + "statistics": { + "charactersCount": 46, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classifications": [ + { + "category": "Sports", + "confidenceScore": 0.99 + }, + { + "category": "Music", + "confidenceScore": 0.0 + }, + { + "category": "Health", + "confidenceScore": 0.0 + }, + { + "category": "Politics", + "confidenceScore": 0.0 + } + ], + "statistics": { + "charactersCount": 42, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification_single.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification_single.json new file mode 100644 index 000000000000..06026b2bbf75 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_dynamic_classification_async.pyTestDynamicClassificationtest_dynamic_classification_single.json @@ -0,0 +1,84 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "346", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "DynamicClassification", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The WHO is issuing a warning about Monkey Pox.", + "language": "en" + }, + { + "id": "1", + "text": "Mo Salah plays in Liverpool FC in England.", + "language": "en" + } + ] + }, + "parameters": { + "classificationType": "single", + "categories": [ + "Health", + "Politics", + "Music", + "Sports" + ] + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55451f57-4098-4dfd-8c31-17de26b798ea", + "Content-Length": "293", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=0,CognitiveServices.TextAnalytics.TextRecords=2", + "Date": "Mon, 31 Oct 2022 18:26:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "366", + "x-ms-region": "UK South" + }, + "ResponseBody": { + "kind": "DynamicClassificationResults", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "Health", + "confidenceScore": 0.88 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [ + { + "category": "Sports", + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfc.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfc.json index 3a5ac8069009..6aed0e987559 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfc.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfc.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d52e1739-b5d4-4264-8704-9c60d43c5554", + "apim-request-id": "e1ba64e0-8620-40c4-a3d9-246eeb7d6cbd", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:52 GMT", + "Date": "Mon, 17 Oct 2022 19:02:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfd.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfd.json index c138507d44af..56f8ee783c4f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfd.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_diacritics_nfd.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "190", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ede67a8-e060-43bc-98f9-2ec8a0e1d32c", + "apim-request-id": "f59b22fe-2b1f-412d-8636-ed38b0269490", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:52 GMT", + "Date": "Mon, 17 Oct 2022 19:02:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji.json index 9bbc87833885..e15db815e8bb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "911888d0-ba7d-4412-be7e-433cf43f5fea", + "apim-request-id": "726e09e5-ed40-412f-84c7-bef0c08b68d5", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:51 GMT", + "Date": "Mon, 17 Oct 2022 19:02:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family.json index 62571217e858..084619768f70 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "247", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "989098bb-0bfa-494c-8607-4bf216e8b16c", + "apim-request-id": "a5a2e1c7-15c3-49ea-8dfc-75e1463b8304", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:51 GMT", + "Date": "Mon, 17 Oct 2022 19:02:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json index 7ff0303e390e..5973de1ccd34 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c281505-3ed5-46c9-bc4c-0882da45032e", + "apim-request-id": "9dcfda57-9d24-4b3a-9797-46483c348775", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:52 GMT", + "Date": "Mon, 17 Oct 2022 19:02:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_with_skin_tone_modifier.json index bde88a9e2618..f6cb8d2f3550 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_emoji_with_skin_tone_modifier.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "205", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d08f807-4f15-43bf-b59f-dfe79f1b1627", + "apim-request-id": "ba964a7a-bc0c-4fd4-a30f-04203408d1e6", "Content-Length": "290", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:51 GMT", + "Date": "Mon, 17 Oct 2022 19:02:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfc.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfc.json index 31985cd09592..fa4d451dd7de 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfc.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfc.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ae66899-dbaa-4962-b91b-b137547819f3", + "apim-request-id": "90acfdf5-ebe1-4917-9eeb-85ac9a7fc0a9", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:53 GMT", + "Date": "Mon, 17 Oct 2022 19:02:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfd.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfd.json index 81104b58c7f5..54a8acd749a6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfd.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_korean_nfd.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59e16ddc-d778-4bb3-9ccc-3ffacc485a58", + "apim-request-id": "91fbf0e6-28dc-4719-9d4e-5a1274ce7005", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:53 GMT", + "Date": "Mon, 17 Oct 2022 19:02:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_zalgo_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_zalgo_text.json index 8feae5c84225..dd66d4397211 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_zalgo_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding.pyTestEncodingtest_zalgo_text.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "856", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61b87d99-89d0-4494-b4cc-c21de09d39b7", + "apim-request-id": "acf1dd4c-773c-41fc-9759-517f32ce2a64", "Content-Length": "511", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:34:53 GMT", + "Date": "Mon, 17 Oct 2022 19:02:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfc.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfc.json index dcc9adce927f..9113ff0bcf20 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfc.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfc.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7c5a226-bcfd-4de3-9023-fc77c375bde1", + "apim-request-id": "b2d3620b-2652-4d69-9a5f-c0ef49b94f75", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:38 GMT", + "Date": "Mon, 17 Oct 2022 19:02:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfd.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfd.json index 048f3a4df245..fef84b622f87 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfd.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_diacritics_nfd.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "190", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d074cad0-2820-42db-b2a1-88bb21df8d77", + "apim-request-id": "48bebadf-8b4d-4c66-bebc-5eaf457b6479", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:38 GMT", + "Date": "Mon, 17 Oct 2022 19:02:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji.json index 26b166844f53..8a5a2014a83a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40d952d9-bec0-46c5-84a1-420e68ece329", + "apim-request-id": "8150a828-dffe-47e6-847d-dacb92b45341", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:35 GMT", + "Date": "Mon, 17 Oct 2022 19:02:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family.json index 7a80e8d340f6..09b9b94e03f9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "247", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b885b9d8-0f2c-4b4a-928b-e8a433adf14e", + "apim-request-id": "231a9ddd-cf71-4408-936b-bcd011b0b172", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:37 GMT", + "Date": "Mon, 17 Oct 2022 19:02:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json index b3041389f50f..b389f0a6ec58 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_family_with_skin_tone_modifier.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b339e56f-b3f9-4e71-a00a-018c5f0f2f50", + "apim-request-id": "cc9117c7-d488-4499-855c-08765d025714", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:37 GMT", + "Date": "Mon, 17 Oct 2022 19:02:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_with_skin_tone_modifier.json index ea7e07b5e62d..eaf6089a743a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_emoji_with_skin_tone_modifier.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "205", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75f63d52-7c30-4f2f-95ac-3a71b752b88f", + "apim-request-id": "f9da95c4-eadc-41d8-b40c-f527395fb662", "Content-Length": "290", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:36 GMT", + "Date": "Mon, 17 Oct 2022 19:02:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfc.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfc.json index b3950c963724..fdd949f83229 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfc.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfc.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a27b218-afbd-40d2-9ef5-9daf4ab8f6e8", + "apim-request-id": "12bd4fb7-13a9-43dc-af89-03ef136185e1", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:39 GMT", + "Date": "Mon, 17 Oct 2022 19:02:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfd.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfd.json index 2369b57fd771..252ea8e234ba 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfd.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_korean_nfd.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "193", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "409f93a3-fcfd-428a-b365-e84d990d75d9", + "apim-request-id": "cb430c19-fd77-4980-8d1e-dd435cfdafc5", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:40 GMT", + "Date": "Mon, 17 Oct 2022 19:02:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_zalgo_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_zalgo_text.json index 3a43fdec4da7..5739dcd8359d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_zalgo_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_encoding_async.pyTestEncodingtest_zalgo_text.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "856", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "335cb428-4844-4147-b88a-f026ab006d56", + "apim-request-id": "27028a72-2409-4e74-bd9c-2f51c2e5da94", "Content-Length": "511", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:36:41 GMT", + "Date": "Mon, 17 Oct 2022 19:02:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json index 0992cce594dd..e10a4c0cc9b0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "268", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -31,14 +31,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b5ec12c-8253-4feb-a1f8-c1938635bf9c", + "apim-request-id": "05fcbe0b-1768-4ffd-b68f-11ac0e2921d6", "Content-Length": "483", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:29:54 GMT", + "Date": "Mon, 17 Oct 2022 19:02:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -78,7 +79,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json index 1f19e89b3e96..24c1562e4044 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "268", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -31,14 +31,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "426c1dcb-0422-4f12-8007-ca52452a6170", + "apim-request-id": "6f9f9260-bda0-4ded-b6a8-62b742666494", "Content-Length": "259", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:29:55 GMT", + "Date": "Mon, 17 Oct 2022 19:02:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -64,7 +65,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_credentials.json index 98e606522c69..a034666b2fda 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "153", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,10 +26,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "cfc1ed29-38f1-4223-b8e0-ad1c0171672a", + "apim-request-id": "fe351501-a3bd-48d9-9a22-574612a7c6eb", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:29:57 GMT" + "Date": "Mon, 17 Oct 2022 19:03:03 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_model_version_error.json index 08f73cac0dda..4a947b44aa48 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "190", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -28,13 +28,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "63191875-d444-45d3-95ea-6d4749bf3d93", + "apim-request-id": "fa48b484-3ab1-4e29-937d-c0c4ba7d7156", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:30 GMT", + "Date": "Mon, 17 Oct 2022 19:03:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -42,7 +42,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2021-06-01. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2021-06-01,2022-07-01,2022-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit.json index 67a788a9db41..dce24e842e8e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "58823", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -5271,13 +5271,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0389e8e1-3a95-4060-b3a6-4f77eca9a4ff", + "apim-request-id": "f07e7d5a-76e4-4b3c-81bf-e5243e6eb040", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json index 56d735562ee1..44fa88cda58c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "56030", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -5026,13 +5026,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c22265c7-7635-46f8-ae95-bb871da88e72", + "apim-request-id": "c5ff3de9-9a3a-4a1a-b55e-a395e5651b12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:48 GMT", + "Date": "Mon, 17 Oct 2022 19:03:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json index 0b454e1c95b9..b1e67babccf9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9737ed10-7f7f-48d5-b972-7c7ff272f78e", + "apim-request-id": "3cad830d-cafa-4e83-93f6-41f2c8ed0fb1", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:12 GMT", + "Date": "Mon, 17 Oct 2022 19:03:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,12 +74,12 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -86,7 +87,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -113,14 +114,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f96abefa-c57a-4154-91c7-7eb09aa03a10", + "apim-request-id": "43f60bd4-9bdb-41cd-a92c-67f5036772d7", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:13 GMT", + "Date": "Mon, 17 Oct 2022 19:03:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -150,12 +152,12 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -163,7 +165,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -190,11 +192,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8849607-6cba-4079-a1fd-163734926267", + "apim-request-id": "937a1d50-91a3-47d7-b006-2f01db9d013b", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:13 GMT", + "Date": "Mon, 17 Oct 2022 19:03:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" @@ -227,7 +230,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs.json index 1a62587b23ae..fb542b0a102e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f385806c-ef98-416c-8b02-456bfb5549f2", + "apim-request-id": "dd655d35-efdd-44b6-9a90-299d784c3cde", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:30:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:12 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -43,7 +44,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json index 94adaa3c95fc..4337920fc0bc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cc3617e-09e0-44ba-b532-c5e25d548c7c", + "apim-request-id": "55d06619-ff7c-4790-87c9-fd80237fbc8b", "Content-Length": "160", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:04 GMT", + "Date": "Mon, 17 Oct 2022 19:03:12 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -51,7 +52,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json index e017f8f8b8cd..1e8c8a455aa0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "126", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,13 +26,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea015239-9ac7-4197-b0ec-6d0e1d40109c", + "apim-request-id": "9c100958-7c89-474d-ba0c-667f40bbaf8e", "Content-Length": "266", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:26 GMT", + "Date": "Mon, 17 Oct 2022 19:03:08 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -51,7 +52,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json index 2600a20083cb..9239c6aabce8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "126", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,10 +26,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2eb8fa8c-a0c6-452b-b510-940cca997c9a", + "apim-request-id": "139aa22a-cff9-4724-ad85-8ad429ba2f56", "Content-Length": "266", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:28 GMT", + "Date": "Mon, 17 Oct 2022 19:03:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" @@ -51,7 +52,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_errors.json index 92879bd9bd2a..908cb56cd1df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,10 +36,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6d4b118-c6c9-4d17-bcd2-6588aa17f3a3", - "Content-Length": "991", + "apim-request-id": "4b26fa26-284f-4931-975e-1e185f76df8d", + "Content-Length": "1199", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:34 GMT", + "Date": "Mon, 17 Oct 2022 19:03:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -67,7 +68,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } }, @@ -83,7 +84,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_duplicate_ids_error.json index da7e39cb4d6e..3f227e6427f9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "218", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -31,13 +31,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5493baf9-b4e0-4684-8dd5-667a6852f4e9", + "apim-request-id": "f31a8633-4132-4fdd-b69e-2cec37778f45", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:45 GMT", + "Date": "Mon, 17 Oct 2022 19:03:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_empty_credential_class.json index c8e7b6753bb3..73888817b856 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "153", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,10 +26,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "8e692c1e-1714-49c1-b3c3-a220485e06f4", + "apim-request-id": "7f7eec48-8f1c-49f7-9dac-c43195f7c1fd", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:29:57 GMT" + "Date": "Mon, 17 Oct 2022 19:03:02 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_all_errors.json index e32dde4fcfc5..89a5366f40fa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "224", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -31,13 +31,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ec785aa-4839-4d22-b886-1cbb2e7cbab5", - "Content-Length": "654", + "apim-request-id": "0bee27bf-72a4-418c-8c8a-7e68dd1d0744", + "Content-Length": "862", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:29:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:02 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -51,7 +52,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027English\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } }, @@ -67,7 +68,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_some_errors.json index e80622a0004e..370633a24ed6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "273", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -31,14 +31,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "895a84de-0643-445f-87d1-28f358e9f5eb", - "Content-Length": "568", + "apim-request-id": "926aab75-0013-4ef6-bce9-4bb9be4b3043", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:29:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -62,12 +63,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027English\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json index 5366903bd656..6e5590807154 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,13 +26,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c07829f3-e63a-416c-a68a-5034fa9b4094", - "Content-Length": "491", + "apim-request-id": "339240e0-260b-4603-b407-cb27f4b98b26", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:16 GMT", + "Date": "Mon, 17 Oct 2022 19:03:07 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -46,12 +47,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json index 81183368ccf9..458605603a7f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,13 +26,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81a0647b-d77d-4e46-949c-2088e69a1a2d", - "Content-Length": "491", + "apim-request-id": "b9aafb6a-2148-43fd-b780-449c6f94cc4d", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:30:14 GMT", + "Date": "Mon, 17 Oct 2022 19:03:07 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -46,12 +47,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json index a50fce75fe9d..59d036f69f37 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "185", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "369cc881-d2ef-4f84-8ea2-aeec2231a7c6", + "apim-request-id": "cf4cabb3-9efb-4d89-8055-cce52897f9b9", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:30:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:11 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -62,7 +63,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_out_of_order_ids.json index dc68be501eb4..13a66c4b1288 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "309", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -46,14 +46,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47c47e53-0782-426a-ad0e-85b55301a89f", + "apim-request-id": "99cb6beb-f8a6-44cd-938f-778338c1ca9d", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 18:29:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:03 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -93,7 +94,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_output_same_order_as_input.json index 54316354375b..74a4f448da75 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "317", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -46,11 +46,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0165deef-bb0e-492e-bc4d-9dd879f54212", + "apim-request-id": "6853c6c2-f5a8-4793-9090-88436c1c003b", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 18:29:57 GMT", + "Date": "Mon, 17 Oct 2022 19:03:02 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" @@ -86,7 +87,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_pass_cls.json index 099d97aee4df..e272da01b6ae 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -26,14 +26,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c778544-be91-4c70-90cf-11e994e25d59", + "apim-request-id": "15e9491b-4581-4aac-82e2-ad88208522a9", "Content-Length": "167", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:30:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:11 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -50,7 +51,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_passing_only_string.json index 723ed3d5d6fe..face17e45970 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "311", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4e370ae-d1bf-440f-8781-1dae9dcdf0a1", + "apim-request-id": "f892a286-48f3-4b65-8302-9aebcefcdec3", "Content-Length": "421", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:29:55 GMT", + "Date": "Mon, 17 Oct 2022 19:03:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -81,7 +82,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json index f795c893e456..5975bea9db84 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "304", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd2ef519-19d6-43d1-bbd9-ce18491e9967", + "apim-request-id": "a89d00ad-6691-4c25-9da3-b21073958267", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:05 GMT", + "Date": "Mon, 17 Oct 2022 19:03:05 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_rotate_subscription_key.json index 17e2d1222685..42195e884e82 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d487289-9497-4967-bcdd-b0563ac4c68b", + "apim-request-id": "59df8f5a-7637-4601-b116-332134d0c129", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:18 GMT", + "Date": "Mon, 17 Oct 2022 19:03:07 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,12 +74,12 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -86,7 +87,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -113,10 +114,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "0c5f92c5-38dd-4f9e-8c52-798131a1968d", + "apim-request-id": "81443989-2ba4-46ae-a986-4f969f5ab145", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:30:19 GMT" + "Date": "Mon, 17 Oct 2022 19:03:07 GMT" }, "ResponseBody": { "error": { @@ -126,7 +127,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -134,7 +135,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -161,11 +162,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8059801-6511-4768-81bf-c0674be53e0f", + "apim-request-id": "882d4c00-4cc6-4085-b840-655d9df11303", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:19 GMT", + "Date": "Mon, 17 Oct 2022 19:03:08 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" @@ -198,7 +200,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json index a0df7f14aed3..7fdf04e1dfda 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "333", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3589e71c-fae3-478f-ae63-f37ef9ebc0cb", + "apim-request-id": "756abbf2-34f0-4180-8a18-16d22be36ad0", "Content-Length": "768", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 18:29:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -117,7 +118,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_too_many_documents.json index bacbba376e6e..2d6e9970ec77 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "602", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -76,9 +76,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "49dec656-4713-4e8b-9359-7a5467e8ba32", + "apim-request-id": "68f2fd93-c185-40a6-ac9c-e935df0010df", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:29:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_user_agent.json index e2c7bc2a1c6e..f700dcc9b1a5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,11 +36,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ffdce62-cb78-4f1c-976d-c58629d82be5", + "apim-request-id": "b29c8585-f317-4188-b15d-af4fb2fe770d", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:23 GMT", + "Date": "Mon, 17 Oct 2022 19:03:08 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json index 16e708a9adfd..8a710670740e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "341", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0462d44c-a009-46c3-bb00-aa29c9bf1cf8", + "apim-request-id": "73c7a191-2e52-477d-9364-e3341fc36351", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:04 GMT", + "Date": "Mon, 17 Oct 2022 19:03:05 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json index 604d800e4741..cdf2c8e5b6b5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "347", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "217ea478-f868-426c-98a2-a472efa563b4", + "apim-request-id": "8150f6c7-da09-4096-a527-abfe90db046f", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json index 4d1f73a6e018..2d1f950427cc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "752691d9-4ebf-48a0-97c0-7cb43e5100e9", + "apim-request-id": "b4b1d44d-5545-4605-b55f-57a2cc97fe1c", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:11 GMT", + "Date": "Mon, 17 Oct 2022 19:03:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json index 68b273d76f66..b3b2693bac42 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "321", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "550d9b5a-1472-44d7-8756-c5de016b504c", + "apim-request-id": "c277434a-d9f1-447b-9a90-e201859274f5", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:06 GMT", + "Date": "Mon, 17 Oct 2022 19:03:05 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -74,7 +75,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json index 5846e017a23e..2c4d91adfebf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "321", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -36,14 +36,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9420e4c-e07a-4bb4-a708-c117f39fe2ad", + "apim-request-id": "65498e5d-ae40-4077-aeff-0cd291ab7795", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:30:09 GMT", + "Date": "Mon, 17 Oct 2022 19:03:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -74,7 +75,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json index 4e8e6ebeddd6..01675c661aa0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "268", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -30,11 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd645a54-31ac-46db-911f-dc7e2ce8af53", + "apim-request-id": "402dcf84-2307-4cf3-a73b-abb8793cd5e0", "Content-Length": "483", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:31:10 GMT", + "Date": "Mon, 17 Oct 2022 19:03:12 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" @@ -77,7 +78,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json index aace59d0b528..56157b6cb259 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "268", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -30,14 +30,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ce797c4-8f95-43f2-b86b-d0c50bbbd374", + "apim-request-id": "b90f4588-9d9d-400f-aee9-26af735f50dc", "Content-Length": "259", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:31:11 GMT", + "Date": "Mon, 17 Oct 2022 19:03:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -63,7 +64,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_credentials.json index 88d646fd938b..5229afa9404d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "153", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,10 +25,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "729ea46a-852e-41b5-8eb4-e9bfedbf1d04", + "apim-request-id": "3401b9c6-302b-4188-a388-44d9811463f0", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:31:19 GMT" + "Date": "Mon, 17 Oct 2022 19:03:14 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_model_version_error.json index f2c19e92c9f7..99687579a9d7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "190", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -27,13 +27,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d831371d-b0e4-4e1d-b342-3d00bae27fbe", + "apim-request-id": "bc42dbf8-aa6d-422f-950e-d6598cedbab4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:38 GMT", + "Date": "Mon, 17 Oct 2022 19:03:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -41,7 +41,7 @@ "message": "Invalid Request.", "innererror": { "code": "ModelVersionIncorrect", - "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2021-06-01. For additional details see https://aka.ms/text-analytics-model-versioning" + "message": "Invalid model version. Possible values are: latest,2019-10-01,2020-07-01,2021-06-01,2022-07-01,2022-10-01. For additional details see https://aka.ms/text-analytics-model-versioning" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit.json index 352e41aaaa4b..05a1f13d2200 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "58823", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -5270,13 +5270,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4293325a-0914-4aad-96c3-6e9db5406ab7", + "apim-request-id": "a05c9433-0701-47fc-bc33-d6753ac0e415", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:26 GMT", + "Date": "Mon, 17 Oct 2022 19:03:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json index 3c4cee866e1e..6ece0bab976c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "56030", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -5025,13 +5025,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "871f76c6-3e44-4bdd-ae79-e0bbd963b390", + "apim-request-id": "4e5668b1-3e9f-47d2-bbb5-9cc0eb8c80d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:39 GMT", + "Date": "Mon, 17 Oct 2022 19:03:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json index 3c631329a468..ef746fc4379a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_client_passed_default_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c84708b-8b57-4d44-abf5-681a832dfebe", + "apim-request-id": "9aaa9767-2106-4109-85d1-e7e399279bf7", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:35 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,19 +73,19 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -111,14 +112,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39304801-3f14-4818-8a05-af09f75cb069", + "apim-request-id": "27adf2a1-e4f4-4ef6-b05e-c45d29d8842f", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:35 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -148,19 +150,19 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -187,14 +189,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d549014-4919-40c3-ad6a-50bb43c5ee9f", + "apim-request-id": "6c0a743b-f214-4fad-bd57-e51ddbb43f8a", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:36 GMT", + "Date": "Mon, 17 Oct 2022 19:03:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -224,7 +227,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs.json index 4e0565ca7f3b..c7f27eb64696 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "728368f0-f397-4d2e-9909-8a676c9ffeac", + "apim-request-id": "6378b9f8-24d5-4b94-abea-f4ecbcb9ae8c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:41 GMT", + "Date": "Mon, 17 Oct 2022 19:03:23 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -42,7 +43,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } ], diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json index fb857026c152..23d735aab1ae 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fbaa33b-9764-4b0d-b3b5-94b9b23c7f39", + "apim-request-id": "0144c23b-4471-4eaf-8273-58a7f566ca7a", "Content-Length": "160", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:41 GMT", + "Date": "Mon, 17 Oct 2022 19:03:24 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -50,7 +51,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json index aa3a2d12c78d..42e980dd172c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "126", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,13 +25,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1709e236-c873-4941-94f2-dcb8d713afc6", + "apim-request-id": "ced848c7-e705-415c-8b96-ffb46245a844", "Content-Length": "266", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:37 GMT", + "Date": "Mon, 17 Oct 2022 19:03:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -50,7 +51,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json index 6c3d6fd73d10..39719e951e95 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "126", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,10 +25,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73841fc5-14aa-4753-bb95-32edc03ef16c", + "apim-request-id": "b21d4748-9d56-4d20-94ac-3b4951b31bc2", "Content-Length": "266", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:37 GMT", + "Date": "Mon, 17 Oct 2022 19:03:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -50,7 +51,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_errors.json index cfad31b6e839..7b411e60fa86 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,10 +35,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11ff6679-616c-4a37-874d-30330213d265", - "Content-Length": "991", + "apim-request-id": "48d8d890-0a1b-4abb-8449-b26a2603c8fc", + "Content-Length": "1199", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:38 GMT", + "Date": "Mon, 17 Oct 2022 19:03:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -66,7 +67,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027english\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } }, @@ -82,7 +83,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_duplicate_ids_error.json index 07f61eb5980a..e1aa55335e0a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "218", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3e68c5c6-022a-4284-a6cf-49211d3fb31b", + "apim-request-id": "df0b31cc-55d2-438c-a019-8a4da6cca0ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:39 GMT", + "Date": "Mon, 17 Oct 2022 19:03:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_empty_credential_class.json index c9270962141e..3adc1896a42d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "153", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,10 +25,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "01cc9efc-b2a8-4fc8-b410-f70defd0fa8f", + "apim-request-id": "881b079e-a026-4576-b1be-19844b97e1d3", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:31:18 GMT" + "Date": "Mon, 17 Oct 2022 19:03:14 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_all_errors.json index 0d696fde72fd..106e6a0a3a0b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "224", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -30,10 +30,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a42ab8b-86da-48df-a96d-e52276de96ec", - "Content-Length": "654", + "apim-request-id": "7ea7386f-f40f-47fc-91d5-5d4112b3e538", + "Content-Length": "862", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:15 GMT", + "Date": "Mon, 17 Oct 2022 19:03:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -50,7 +51,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027English\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } }, @@ -66,7 +67,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_some_errors.json index 190d0566fb3a..0dc564b0c22c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "273", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -30,14 +30,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecdb03c8-1857-478f-9dcf-f7077585878a", - "Content-Length": "568", + "apim-request-id": "37ead385-0872-4eba-b7ca-997f8468bad3", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:14 GMT", + "Date": "Mon, 17 Oct 2022 19:03:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -61,12 +62,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027English\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json index 17c71783beef..ac0a34e44dc9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,10 +25,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03061826-ac6c-4017-befc-61fc7e901cfe", - "Content-Length": "491", + "apim-request-id": "e98f27cb-2fe4-4705-91b5-8790de053ec6", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:36 GMT", + "Date": "Mon, 17 Oct 2022 19:03:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -45,12 +46,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json index 7f5b7f06a3ed..526ffb1ff5e2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "202", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,13 +25,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55060b14-d794-404d-bb77-66497e907cd0", - "Content-Length": "491", + "apim-request-id": "5b7022b2-a87f-4d88-a0b6-450175d5ac50", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:36 GMT", + "Date": "Mon, 17 Oct 2022 19:03:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -45,12 +46,12 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: af,am,ar,as,az,be,bg,bn,br,bs,ca,cs,cy,da,de,el,en,eo,es,et,eu,fa,fi,fil,fr,fy,ga,gd,gl,gu,ha,he,hi,hr,hu,hy,id,it,ja,jv,ka,kk,km,kn,ko,ku,ky,la,lo,lt,lv,mg,mk,ml,mn,mr,ms,my,ne,nl,no,om,or,pa,pl,ps,pt-BR,pt-PT,ro,ru,sa,sd,si,sk,sl,so,sq,sr,su,sv,sw,ta,te,th,tr,ug,uk,ur,uz,vi,xh,yi,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction" } } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json index 3732bd056438..ce0bf4eadf7e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_language_kwarg_spanish.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "185", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a9e535b-1ca8-4720-8215-4bad4c99c5bd", + "apim-request-id": "17679071-b8b7-43a5-9a52-8a8a120b3ef4", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:40 GMT", + "Date": "Mon, 17 Oct 2022 19:03:23 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -61,7 +62,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_out_of_order_ids.json index f70cf9ac0fca..1657024ee054 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "309", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -45,14 +45,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "129fc515-01af-43ce-9fbd-753b849987be", + "apim-request-id": "44120a7f-ccfe-4fee-9f5d-910752dbf8fa", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 18:31:23 GMT", + "Date": "Mon, 17 Oct 2022 19:03:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -92,7 +93,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_output_same_order_as_input.json index fd7236edfafc..5a328b00b2ad 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "317", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -45,11 +45,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "437101af-556f-4d0f-8e10-565714485c23", + "apim-request-id": "5b467aea-7330-432a-8755-0b24d668c507", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 18:31:17 GMT", + "Date": "Mon, 17 Oct 2022 19:03:14 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" @@ -85,7 +86,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_pass_cls.json index 61507f8c159d..ef8ebd7408d2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "154", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -25,14 +25,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afc5e9ce-bbf4-40e8-9bd8-4d2a00b1f604", + "apim-request-id": "d0856dbc-abd6-430f-98cf-0b17a49e6060", "Content-Length": "167", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 18:31:40 GMT", + "Date": "Mon, 17 Oct 2022 19:03:23 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -49,7 +50,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_passing_only_string.json index a859841e4d8e..7313475d4fde 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "311", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,11 +35,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec97c3b4-cf1e-4363-9537-ab6cf023f1b6", + "apim-request-id": "fb1aad82-4ad6-4fc6-936f-2cbe10ab4664", "Content-Length": "421", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 18:31:13 GMT", + "Date": "Mon, 17 Oct 2022 19:03:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" @@ -80,7 +81,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json index 759a5d6dfec8..89b4ece13cfb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_per_item_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "304", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e6b03a5-e9f8-4e71-8f60-a8bff1db1b5a", + "apim-request-id": "f49ec0c8-7750-429a-b90c-bb082232e816", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:31 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,7 +73,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_rotate_subscription_key.json index 0d2428613a86..57c04f07bbb6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78d6e402-7c70-429a-a722-c45ecdc0a2cc", + "apim-request-id": "ce1022b9-adc0-4c3f-9430-969f026cd697", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:36 GMT", + "Date": "Mon, 17 Oct 2022 19:03:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,19 +73,19 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -111,10 +112,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "85a54d92-6c6f-4e4e-b47a-a3c372066baa", + "apim-request-id": "c904d167-b2ea-4c3c-bf03-7d5e8189aa0e", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 18:31:36 GMT" + "Date": "Mon, 17 Oct 2022 19:03:19 GMT" }, "ResponseBody": { "error": { @@ -124,14 +125,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -158,11 +159,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5a46383-64e2-4953-8610-11e9b7957dc8", + "apim-request-id": "36b96297-35c9-4933-9f91-f6440d882a65", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:37 GMT", + "Date": "Mon, 17 Oct 2022 19:03:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" @@ -195,7 +197,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json index b15d23b75a0f..d05dccff9b15 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "333", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c072f29-826a-40b5-abcc-5d6e8e2e2510", + "apim-request-id": "ef146417-7695-430b-9517-dc79a4ab5cd0", "Content-Length": "768", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 18:31:24 GMT", + "Date": "Mon, 17 Oct 2022 19:03:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -116,7 +117,7 @@ } } ], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_too_many_documents.json index 721d780d895a..1543f559f252 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "602", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -75,13 +75,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "304685eb-56fc-4f19-b5cd-24ca34906f6d", + "apim-request-id": "b5e1ad70-b1c2-4549-b41a-dcf6525ea1da", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 18:31:16 GMT", + "Date": "Mon, 17 Oct 2022 19:03:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_user_agent.json index 2b6a09984d15..83c6b135fed0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "006d3586-ea1a-4d65-8916-42e8323670c9", + "apim-request-id": "7962981f-f2fa-48a8-88f4-8d27fd41e898", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:37 GMT", + "Date": "Mon, 17 Oct 2022 19:03:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,7 +73,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json index ab8251a33825..20fc76d068ac 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "341", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a41970e-4e31-4188-a54b-7e12cc88656c", + "apim-request-id": "93bce913-aa90-4a9b-9498-25a835c39cf6", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:29 GMT", + "Date": "Mon, 17 Oct 2022 19:03:16 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,7 +73,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json index f8e903d210fb..a9bcb1f7957e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "347", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f9575c8-7ee3-4e54-9c16-4abe78c13a33", + "apim-request-id": "0b59b797-1a5d-49e3-b604-d0d0c2d8a2e3", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:28 GMT", + "Date": "Mon, 17 Oct 2022 19:03:16 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,7 +73,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json index f3da8d6871c9..21b72a9ccdcf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f60845e0-8fbc-4b30-a51d-192a18041040", + "apim-request-id": "ef23639e-4d00-48c1-972c-6069ffb773ab", "Content-Length": "263", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:35 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -72,7 +73,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json index 094c2fd290c7..e7bda3cf42b6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "321", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddb8d114-8136-4541-b48e-86336db0565b", + "apim-request-id": "d52db369-0a72-4771-8075-a34febe11a99", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:33 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json index b7f28f6f2023..f0f4ccfee4bf 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_extract_key_phrases_async.pyTestExtractKeyPhrasestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "321", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "KeyPhraseExtraction", @@ -35,14 +35,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e5cb2b9-4d46-49d7-ad5e-5cac687b129c", + "apim-request-id": "c18ae5dc-65b5-4419-98b9-1788c77de207", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 18:31:34 GMT", + "Date": "Mon, 17 Oct 2022 19:03:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "KeyPhraseExtractionResults", @@ -73,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2022-10-01" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_dict.json index 48ed09bec852..821a0c1da3df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "495", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -39,14 +39,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "356e39d5-e8e7-458c-809f-8646b50e0c67", + "apim-request-id": "f392e61e-33b1-4861-ad5d-25dee2123745", "Content-Length": "1113", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:43 GMT", + "Date": "Mon, 17 Oct 2022 19:03:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "255" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json index d441e9c1af43..58497da64e9a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "495", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -39,14 +39,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e1d0a67-5fc8-4bf5-b73a-e45f8edf59de", + "apim-request-id": "ca8dedb9-9aef-4869-a763-0894ca861462", "Content-Length": "831", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:43 GMT", + "Date": "Mon, 17 Oct 2022 19:03:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_credentials.json index 8e8c2a2b59b8..5f71e2ef0759 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "b10695f3-a307-4a9a-89e4-d562c610f182", + "apim-request-id": "056ff05a-db13-4191-973a-8231536e10df", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:43:46 GMT" + "Date": "Mon, 17 Oct 2022 19:03:27 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_model_version_error.json index 00361fdb4f64..772112ac8075 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "227", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -29,13 +29,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "abf4aae6-af40-4941-9e4e-524516ade768", + "apim-request-id": "934a4d95-f59e-4154-a974-629fc2a2d948", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:51 GMT", + "Date": "Mon, 17 Oct 2022 19:03:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit.json index fbb14e41948b..1778da08b3d9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "58858", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -5273,13 +5273,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e457d724-993c-41ab-9436-9891ee68edfe", + "apim-request-id": "31c106c1-f484-464f-a472-56798a527642", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:47 GMT", + "Date": "Mon, 17 Oct 2022 19:03:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json index bd4daf54d693..ac0f7dfe6239 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "56065", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -5028,13 +5028,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3d73c053-bc2b-494e-8d7a-b265ff283a0c", + "apim-request-id": "1aea9803-f7db-4632-a8a9-45c60bf8d712", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:52 GMT", + "Date": "Mon, 17 Oct 2022 19:03:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json index 263dc1260175..3af137a2b52d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17557aa9-75b6-44bc-b2f4-b2cfc132dc5d", + "apim-request-id": "b81b7b24-2fae-4961-bdb8-868f245fd102", "Content-Length": "474", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:49 GMT", + "Date": "Mon, 17 Oct 2022 19:03:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -97,7 +98,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -105,7 +106,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -134,14 +135,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ddb8dc1-0666-451b-a2f0-34784496cffd", + "apim-request-id": "790d41f8-c5b5-4c13-99c6-0fd5d9d382d5", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:49 GMT", + "Date": "Mon, 17 Oct 2022 19:03:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -194,7 +196,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -202,7 +204,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -231,14 +233,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b51a647-d27e-4746-8057-af93f5db9b52", + "apim-request-id": "96043926-3cd9-4beb-956a-73f388f67522", "Content-Length": "474", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:49 GMT", + "Date": "Mon, 17 Oct 2022 19:03:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index f9e2c71531ca..b5471cfdbff3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "174c50ef-a8a2-4e6f-aeb6-6432ac17d881", + "apim-request-id": "7a61ac57-9ccd-43cb-9e88-ddcc72e756ed", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:55 GMT", + "Date": "Mon, 17 Oct 2022 19:03:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index 91c09a9a1a65..c603a201c595 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,10 +22,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9688045-885e-4631-90db-9732c66d59e1", + "apim-request-id": "208034e4-9587-4031-b9e4-9f96edbb78f7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:53 GMT", + "Date": "Mon, 17 Oct 2022 19:03:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs.json index d2120a7b6cbe..775ec6c4dfd4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d8ce7fb-ee59-4254-bde9-850215c481f7", + "apim-request-id": "54ac374e-6ec7-4d99-b2de-d37d4b16ca6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:55 GMT", + "Date": "Mon, 17 Oct 2022 19:03:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json index 51e13a6dce80..60d98496e306 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "208", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ec03ca0-ffcd-4b99-b34f-91c1fe749616", + "apim-request-id": "80faf5bd-2cd5-4e4a-93f4-220935a9c57c", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json index e0832aa6bdb6..2f326b6e7adc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eaa4c914-2320-4cba-ae88-fbc5125d391a", + "apim-request-id": "04fd8037-a6c5-401b-91fb-cf8adb2b0f57", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json index c45e2a79f171..3d28c728e852 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6fc0e6f-6a0a-4eaa-b52f-941add1af9fb", + "apim-request-id": "5f6ce095-4523-4d44-b948-4661a9310087", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:51 GMT", + "Date": "Mon, 17 Oct 2022 19:03:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_errors.json index 4c65f1b41b1d..73a1b42f346d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5411", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecaec331-b8f3-4adf-868b-0414f704d455", - "Content-Length": "965", + "apim-request-id": "94f98a47-ee0a-43ad-aa39-12e12f3fd2a1", + "Content-Length": "975", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:51 GMT", + "Date": "Mon, 17 Oct 2022 19:03:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_warnings.json index 0483b1ed7e79..798345fe0473 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_document_warnings.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "201", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d0cd48f-6230-45c4-94c9-789055116aa3", + "apim-request-id": "ba1b8109-1974-483c-83cb-4c50e8f8991e", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:51 GMT", + "Date": "Mon, 17 Oct 2022 19:03:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_duplicate_ids_error.json index 7e37e4a51bd2..3d95674f061e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "253", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -33,13 +33,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2f13c38f-43cf-46ad-99f6-81ca8c18e219", + "apim-request-id": "c68f8b54-d3f0-4e56-8906-66f903c70698", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:52 GMT", + "Date": "Mon, 17 Oct 2022 19:03:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_empty_credential_class.json index bebe48460faf..7ac65c361166 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "4f412abc-9ebf-49ee-a508-a48ece742dff", + "apim-request-id": "8b4e9eff-ce07-4796-8979-aeedd9c353ec", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:43:45 GMT" + "Date": "Mon, 17 Oct 2022 19:03:27 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_entity_resolutions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_entity_resolutions.json new file mode 100644 index 000000000000..1630effa041d --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_entity_resolutions.json @@ -0,0 +1,90 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "242", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "EntityRecognition", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The cat is 1 year old and weighs 10 pounds.", + "language": "en" + } + ] + }, + "parameters": { + "modelVersion": "2022-10-01-preview", + "stringIndexType": "UnicodeCodePoint" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4d1337c-ee0c-479e-b7f9-2845918db051", + "Content-Length": "531", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Tue, 18 Oct 2022 20:23:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": { + "kind": "EntityRecognitionResults", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "1 year old", + "category": "Quantity", + "subcategory": "Age", + "offset": 11, + "length": 10, + "confidenceScore": 0.97, + "resolutions": [ + { + "resolutionKind": "AgeResolution", + "unit": "Year", + "value": 1.0 + } + ] + }, + { + "text": "10 pounds", + "category": "Quantity", + "subcategory": "Dimension", + "offset": 33, + "length": 9, + "confidenceScore": 0.8, + "resolutions": [ + { + "resolutionKind": "WeightResolution", + "unit": "Pound", + "value": 10.0 + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json index 572a11da84d1..15c22016de61 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "584c0fd8-359e-4c06-9c63-613b8116d211", + "apim-request-id": "dbbfd991-819e-4546-ac8e-6a1131ccbf17", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:55 GMT", + "Date": "Mon, 17 Oct 2022 19:03:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json index 37d5207991f4..9eca1a9319c7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "499a5269-a68d-4a8c-a504-3ad267a1c681", + "apim-request-id": "da696b60-9ac1-4d4b-92e4-68b3b103f41d", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:55 GMT", + "Date": "Mon, 17 Oct 2022 19:03:40 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_all_errors.json index 8a7ad2fff684..7d54135203a1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f27029aa-3973-49d0-9296-d29f646e86b8", - "Content-Length": "791", + "apim-request-id": "ce26184b-8e32-4cb7-8258-7aae466712cf", + "Content-Length": "801", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:44 GMT", + "Date": "Mon, 17 Oct 2022 19:03:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_some_errors.json index 61e0917198af..f54391b9da83 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "324", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,11 +38,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef634dc8-8675-4a08-9c97-942ea1f31856", - "Content-Length": "1046", + "apim-request-id": "dd937f6a-76e1-4b99-8596-8e0f24df3b27", + "Content-Length": "1056", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:44 GMT", + "Date": "Mon, 17 Oct 2022 19:03:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" @@ -95,7 +96,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json index c4aa5c767a42..5e2dc66c59bb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44f7d639-bc8d-410e-9dfe-6cedd9b466d9", - "Content-Length": "465", + "apim-request-id": "041ecd6f-2111-45e7-a88b-414bc63cb92c", + "Content-Length": "480", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_method.json index 70a103f7396e..20406f5da648 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e28b82a-89a2-4946-a03f-ab4887308a8b", - "Content-Length": "465", + "apim-request-id": "9deb896b-3e41-432f-a2fe-ea5e183ede7a", + "Content-Length": "480", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:49 GMT", + "Date": "Mon, 17 Oct 2022 19:03:31 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_language_kwarg_spanish.json index 338d02ce6b31..931992e496d8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_language_kwarg_spanish.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "040f41a3-28c5-4630-af0d-e00cc89ccb63", + "apim-request-id": "ff6fb960-b21c-4214-a5b7-9384e4e0bc00", "Content-Length": "570", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:52 GMT", + "Date": "Mon, 17 Oct 2022 19:03:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json index 4263ca7f69cf..dea7ccc736e5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "108", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ed62e64-f9ef-4a06-86fe-bfba15841088", + "apim-request-id": "05f12473-9ed7-4c32-929c-85de2d9937ac", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:53 GMT", + "Date": "Mon, 17 Oct 2022 19:03:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_offset.json index dabd9257aaa6..5f36d248f254 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_offset.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "211", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57b53e39-b4d2-42e8-974d-af20b9984118", + "apim-request-id": "3ca5469f-5377-450a-b1eb-a0615ef9a44b", "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:53 GMT", + "Date": "Mon, 17 Oct 2022 19:03:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_out_of_order_ids.json index 03814bb0ce1d..d490c3eb76c4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "344", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8832f8eb-371b-45e3-8182-0e7664177bdf", + "apim-request-id": "5bfb4222-785c-4419-9856-0fda46d7d3fa", "Content-Length": "422", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:43:46 GMT", + "Date": "Mon, 17 Oct 2022 19:03:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_output_same_order_as_input.json index 7e79a794a030..9b0e070ac5c2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43a7c39f-66cb-4215-8354-072aff438aa3", + "apim-request-id": "71bcc512-f6be-4b12-8e17-0dc9df008d0f", "Content-Length": "815", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:43:45 GMT", + "Date": "Mon, 17 Oct 2022 19:03:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_pass_cls.json index 717cf7bd10c0..7dc83f49886a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6b660c9-0d79-45b6-a3a7-cf8c1e501d44", + "apim-request-id": "db548aad-9957-4098-82b4-fea984135335", "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:53 GMT", + "Date": "Mon, 17 Oct 2022 19:03:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_passing_only_string.json index cfa5150b7618..028db37a5a13 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "508", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -43,14 +43,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db04295e-6efb-4133-8756-fc2b8f384d6e", + "apim-request-id": "474ae105-f692-49fb-a26a-e0cd5477cbef", "Content-Length": "1725", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:43 GMT", + "Date": "Mon, 17 Oct 2022 19:03:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json index a2a64b229658..54d14da12fce 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0be3d67a-09a1-4d76-a6ae-00062ef1e9e3", + "apim-request-id": "c89de281-693c-4627-bb4a-f0db99884d7a", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:48 GMT", + "Date": "Mon, 17 Oct 2022 19:03:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_rotate_subscription_key.json index 4366de6380bd..12827a2818ec 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3f1e1a7-17cd-4c93-aa65-ef093777089b", + "apim-request-id": "35bda73b-a920-40fc-9d0c-f60967e4bcdc", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -98,7 +99,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -106,7 +107,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -135,10 +136,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "0ad5161e-92dd-48bf-979b-f5b7acff8ada", + "apim-request-id": "fd9b4dc2-2550-40eb-90b7-e292ebaa578b", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT" + "Date": "Mon, 17 Oct 2022 19:03:32 GMT" }, "ResponseBody": { "error": { @@ -148,7 +149,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -156,7 +157,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -185,14 +186,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37684fd6-5dc1-4b56-b7d6-a3d42d27927f", + "apim-request-id": "eb44e0d8-199e-4667-a625-8caab622e068", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_show_stats_and_model_version.json index c64d7788e0e6..cce1b3bc562e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -49,14 +49,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b58ec2b1-beff-4363-8c0c-2556acdab431", + "apim-request-id": "bc65d7db-60e9-4612-840a-2c416ce64e6e", "Content-Length": "758", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:43:46 GMT", + "Date": "Mon, 17 Oct 2022 19:03:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_too_many_documents.json index 4a62969e7386..dd25da7f8312 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "398", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -53,13 +53,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "cd6d3bc2-79c2-4c40-94f5-2720184d03e6", + "apim-request-id": "260eec8a-4dbd-4501-bed5-80e1b5991696", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:44 GMT", + "Date": "Mon, 17 Oct 2022 19:03:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_user_agent.json index 3917f9dbae0d..f6673c217b14 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad4555f7-d69c-4605-b7eb-3b14d3df67ef", + "apim-request-id": "a6b52db1-e625-4bce-8fb3-6bfffda197a6", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:50 GMT", + "Date": "Mon, 17 Oct 2022 19:03:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json index d21433fa81b2..c35bcc99305c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "244eb154-0f6f-4b77-8a2e-38982c10d2c5", + "apim-request-id": "283197eb-ea61-4791-b4cf-82067fdc66eb", "Content-Length": "418", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:47 GMT", + "Date": "Mon, 17 Oct 2022 19:03:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint.json index 5a64f68eab06..d121b7403e67 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "382", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2932ff1a-a15b-49aa-bb9e-bff9bc712984", + "apim-request-id": "165201d2-cd02-41de-aaf9-90316e045379", "Content-Length": "391", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:47 GMT", + "Date": "Mon, 17 Oct 2022 19:03:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index 04c95e968fe8..eb477ac4e0d1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99a306c2-5892-4b3c-a369-38f974a715b0", + "apim-request-id": "82eb3cf0-6397-4af5-a033-9cb2f36fa820", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:49 GMT", + "Date": "Mon, 17 Oct 2022 19:03:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json index 200347cae8e4..7856c68500f3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6515b65-a214-44c4-ae3c-5dc52a91ee5a", + "apim-request-id": "6a2bdd64-0d7b-46c4-b066-8003205159f7", "Content-Length": "395", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:48 GMT", + "Date": "Mon, 17 Oct 2022 19:03:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index f9956288436c..d287850bfdd8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63e5f6b5-e7cf-44ce-9697-b0b12fd7f3ae", + "apim-request-id": "c8af475a-5e7f-4726-824f-09c5908be107", "Content-Length": "498", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:48 GMT", + "Date": "Mon, 17 Oct 2022 19:03:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_dict.json index 5617164595f1..2031d96f6944 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "495", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c168934-ed63-45d6-b8d4-47d1fede67e0", + "apim-request-id": "28fecaf5-831e-4b7c-9d74-1e6954a63f72", "Content-Length": "1113", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json index 16b001c924e6..b2cf04f7a6ca 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "495", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d0297d2-03d2-43e0-86c0-9c88d2d08b4e", + "apim-request-id": "13a452a3-c0dc-4227-b39d-5c5cb3a64356", "Content-Length": "831", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:56 GMT", + "Date": "Mon, 17 Oct 2022 19:03:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_credentials.json index a9f767102a41..58f71c21005e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "40713438-e1b9-477f-8818-cfb24e89ff94", + "apim-request-id": "cf8e83a6-9051-4826-bd0d-49884ca483aa", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:43:58 GMT" + "Date": "Mon, 17 Oct 2022 19:03:44 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_model_version_error.json index 846f720651e6..2853e648ef2d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "227", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,9 +28,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1f6b283c-9bff-4047-a432-2e4fc46ffef2", + "apim-request-id": "38fb0b9e-0df9-4ead-bb12-2e83501ecbed", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:03 GMT", + "Date": "Mon, 17 Oct 2022 19:03:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit.json index 40797be275c4..bff853c65aa6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "58858", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -5272,13 +5272,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ed816920-fa13-4afa-abeb-792b5b21fa91", + "apim-request-id": "ac051e0f-e1b9-4745-9283-1ac9a9635ec4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json index 37444843f7e8..8a69b0659d01 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "56065", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -5027,13 +5027,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4ce1e4ce-749b-49f4-98f2-f97079617dce", + "apim-request-id": "beef3e91-92d2-483e-b084-429b5df2f8b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:04 GMT", + "Date": "Mon, 17 Oct 2022 19:03:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json index c2dee126c8fd..a4fa83cf9bd8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_client_passed_default_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58c0445c-aa97-42d2-bf3d-6fe12cce6be5", + "apim-request-id": "2357f07f-5799-4283-b301-f410892af8cf", "Content-Length": "474", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -96,14 +97,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -132,14 +133,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45da6536-8b29-42f2-8df0-1a3acb073491", + "apim-request-id": "03db127d-3cdf-4b30-80df-54be07b6b8b0", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -192,14 +194,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -228,14 +230,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c19665bd-a9d6-4aa4-afad-aadeb8f99fd3", + "apim-request-id": "b44759d9-706b-4d99-bb1c-fb33b952b52d", "Content-Length": "474", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index ea751aab0932..ecfe8536c2d1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "172", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f975c2c-d1b4-4bae-8dab-c5f76e8bfe37", + "apim-request-id": "9662ed45-1d7d-4ebf-b456-f6a9a8ca20af", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:06 GMT", + "Date": "Mon, 17 Oct 2022 19:03:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index 368192b4ffb5..5c0f74a95625 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,10 +21,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e569511-b4cb-4dda-b4e7-07ffafd4599e", + "apim-request-id": "0bba05f1-079f-468b-a80d-77a465b660a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:06 GMT", + "Date": "Mon, 17 Oct 2022 19:03:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs.json index eb1a823e8cba..ff56c5ec04ea 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1a40aa4-92ce-4b41-b6b5-c425fb016587", + "apim-request-id": "b177517f-4143-4cf1-88c4-9e9a87ae0d7b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:07 GMT", + "Date": "Mon, 17 Oct 2022 19:03:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json index 8e8c55f9a7cf..793b162e1dad 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "208", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f9cc0c2-a717-4d17-b1a5-1042d62f2248", + "apim-request-id": "ce95d2e5-2be9-4f95-a4c6-164a0ace9049", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:08 GMT", + "Date": "Mon, 17 Oct 2022 19:03:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json index c59b76d1dfe7..2d86e33ed24d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e6ddece-4d91-424f-9130-abd3f82d45d4", + "apim-request-id": "5128aac6-f8fe-493e-93b0-0c3e7f7ddcff", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:03 GMT", + "Date": "Mon, 17 Oct 2022 19:03:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json index eb598f033242..1395ce1464d3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "161", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "083a042a-e4be-4408-9f65-87037412a548", + "apim-request-id": "18aedc8d-c186-4fa3-9bd7-cdf6e565217d", "Content-Length": "264", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:03 GMT", + "Date": "Mon, 17 Oct 2022 19:03:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_errors.json index d584fb60c3a6..db368c3454a9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5411", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,10 +37,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7cc31367-b9dc-49cb-9437-6285a89c3643", - "Content-Length": "965", + "apim-request-id": "f700a117-21a2-4376-94ef-f95297c4dda2", + "Content-Length": "975", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:03 GMT", + "Date": "Mon, 17 Oct 2022 19:03:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_warnings.json index d40a0cb8524c..464bc96040fd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_document_warnings.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "201", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d222660-abf5-42c5-a151-f72a8ef61e57", + "apim-request-id": "78a8f723-3093-4266-9da0-c7c2d9cc34fc", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:03 GMT", + "Date": "Mon, 17 Oct 2022 19:03:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_duplicate_ids_error.json index 56f08e9f2178..b17ecea757cd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "253", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -32,13 +32,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ac96c042-13ea-4470-b702-cca8d0c36169", + "apim-request-id": "45ab094b-009c-4833-ad33-01a799d33eca", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:04 GMT", + "Date": "Mon, 17 Oct 2022 19:03:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_empty_credential_class.json index 540fedb4a88f..1599c104d58e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "188", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "9aa85a50-d19a-4593-831e-b693b679349e", + "apim-request-id": "56f6a0c6-3611-46eb-9d9a-0b21e64a6446", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:43:58 GMT" + "Date": "Mon, 17 Oct 2022 19:03:44 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_entity_resolutions.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_entity_resolutions.json new file mode 100644 index 000000000000..0828797b8ffa --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_entity_resolutions.json @@ -0,0 +1,89 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Content-Length": "242", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "kind": "EntityRecognition", + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The cat is 1 year old and weighs 10 pounds.", + "language": "en" + } + ] + }, + "parameters": { + "modelVersion": "2022-10-01-preview", + "stringIndexType": "UnicodeCodePoint" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8e41d8be-d378-4bf3-908f-ace5078bfd09", + "Content-Length": "531", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Tue, 18 Oct 2022 20:23:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "kind": "EntityRecognitionResults", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "1 year old", + "category": "Quantity", + "subcategory": "Age", + "offset": 11, + "length": 10, + "confidenceScore": 0.97, + "resolutions": [ + { + "resolutionKind": "AgeResolution", + "unit": "Year", + "value": 1.0 + } + ] + }, + { + "text": "10 pounds", + "category": "Quantity", + "subcategory": "Dimension", + "offset": 33, + "length": 9, + "confidenceScore": 0.8, + "resolutions": [ + { + "resolutionKind": "WeightResolution", + "unit": "Pound", + "value": 10.0 + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2022-10-01-preview" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json index 804793c9c2d9..99af169c5197 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1262339d-a0f4-4652-a14d-e0abc3b60246", + "apim-request-id": "1f25631f-ea32-4958-a1a3-1781b32c0649", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:06 GMT", + "Date": "Mon, 17 Oct 2022 19:03:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json index a7cb4df870fd..acffba80c859 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_explicit_set_string_index_type_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84f082c7-cc3f-4de1-9813-2a108384e27b", + "apim-request-id": "e76c10fd-a357-4fdf-bbdd-769de3827bd5", "Content-Length": "140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:07 GMT", + "Date": "Mon, 17 Oct 2022 19:03:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_all_errors.json index c5d7d3219ac7..d9a9caf9f63d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,13 +37,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f48acfe-b361-4a51-8b01-dcf3bc234948", - "Content-Length": "791", + "apim-request-id": "a95757a4-8a66-4f8c-b115-2be6bc64cf1e", + "Content-Length": "801", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:57 GMT", + "Date": "Mon, 17 Oct 2022 19:03:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_some_errors.json index 5048be4ad045..8fc6b8eb764c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "324", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d867544b-c987-484a-90b1-d9ed60e3cae3", - "Content-Length": "1046", + "apim-request-id": "57dc75ce-807d-48fd-a5be-8588f5a78bb4", + "Content-Length": "1056", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:43:57 GMT", + "Date": "Mon, 17 Oct 2022 19:03:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -94,7 +95,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json index b270c6e7b800..9b257b00f7b5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30f11691-a7a8-4240-8ce5-fd4bbf9471d5", - "Content-Length": "465", + "apim-request-id": "caf11759-30fe-40b1-ace7-2f72497de120", + "Content-Length": "480", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "EntityRecognitionResults", @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_method.json index ce98d9e4fbc6..1d8e05b2ee28 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "237", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a2fecfd-0c70-4cd8-b56a-15649719f1d0", - "Content-Length": "465", + "apim-request-id": "dedc4632-6814-42ba-abbe-3cf875d99c12", + "Content-Length": "480", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_language_kwarg_spanish.json index 82f0b3937a60..cead842c833b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_language_kwarg_spanish.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "222", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34990eaf-fd5c-48e8-b012-b7d306cc466c", + "apim-request-id": "3ddadb4c-badd-4e89-9c71-8710e895280a", "Content-Length": "570", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:05 GMT", + "Date": "Mon, 17 Oct 2022 19:03:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json index fed048f308de..2a8fa408a27e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_no_offset_v3_categorized_entities.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "108", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d68e56fd-1cee-4285-a7e9-4141c44bba94", + "apim-request-id": "e0d16a9e-1fde-44b5-a082-f730e4bf9d74", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:06 GMT", + "Date": "Mon, 17 Oct 2022 19:03:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_offset.json index 83d03949e0f4..b542e9f1d3ab 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_offset.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "211", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1257b3f8-bb62-44f5-9957-fa2d669c87dc", + "apim-request-id": "68f9f0be-93e5-45ad-9455-33db809b575b", "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:05 GMT", + "Date": "Mon, 17 Oct 2022 19:03:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_out_of_order_ids.json index 1cf026f6ee4f..c0079ca361e8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "344", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b87e983-abef-4a9e-aa79-d028992454b0", + "apim-request-id": "ea19cb87-a8ad-4571-89b5-7247b50284de", "Content-Length": "422", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:43:58 GMT", + "Date": "Mon, 17 Oct 2022 19:03:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_output_same_order_as_input.json index f99163f1ad12..26721b53e9b2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9819d740-9084-4220-962c-a0e8997b9823", + "apim-request-id": "d3e9cb00-b82f-4548-86a7-1f7137541868", "Content-Length": "815", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:43:58 GMT", + "Date": "Mon, 17 Oct 2022 19:03:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_pass_cls.json index 532deea642e8..71ce3a85c4a7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "189", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25d5b49c-3c94-4331-953b-a9fe790838fc", + "apim-request-id": "3b49700f-6aa0-410c-b5af-fc7551a01fca", "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:05 GMT", + "Date": "Mon, 17 Oct 2022 19:03:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_passing_only_string.json index 4710a0869c7f..587841e4b517 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "508", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -42,14 +42,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "967f4738-61dd-4952-9bea-fa57f39018a1", + "apim-request-id": "bf3cc39b-21c9-475c-88bf-792d24bcf229", "Content-Length": "1725", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:57 GMT", + "Date": "Mon, 17 Oct 2022 19:03:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json index 0d0e8e6a3acb..69751501e912 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_per_item_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "038f2afc-11a7-4058-a9ff-c4e111723809", + "apim-request-id": "e57008f8-f246-4be9-895d-9a7b6e531d14", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:00 GMT", + "Date": "Mon, 17 Oct 2022 19:03:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_rotate_subscription_key.json index f09293259455..7e13f2014470 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "762aeaa1-9ba2-4ba0-a7de-bdcb5e926861", + "apim-request-id": "c6440eb2-b3fb-470c-a1bf-81ba73cc1535", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "26" @@ -97,14 +98,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -133,10 +134,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "e5f293c0-ba2d-477e-bfd9-80c27114cc88", + "apim-request-id": "2d56bf2d-12db-4641-ab99-622043fc0e25", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT" + "Date": "Mon, 17 Oct 2022 19:03:49 GMT" }, "ResponseBody": { "error": { @@ -146,14 +147,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -182,14 +183,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64c4e59b-b2ae-4c4c-92dd-66dbde750b9e", + "apim-request-id": "e9f24fa8-05e1-4647-87bd-31fad8ba75f2", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_show_stats_and_model_version.json index bf1610f31eed..2b74bd16f75d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "370", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d060760e-78e5-461e-b855-d5ae9bbfad92", + "apim-request-id": "d0ed6696-e032-488a-afcd-fa5b924bc9da", "Content-Length": "758", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:43:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_too_many_documents.json index 9113d117deed..2136fa4982a8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "398", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -52,13 +52,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c0e5f1ac-f101-4cba-b339-6e91e43d7ac0", + "apim-request-id": "f2aa1db4-9674-4f67-a80d-cb939e6ffbe1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:43:57 GMT", + "Date": "Mon, 17 Oct 2022 19:03:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_user_agent.json index 02dd37bdfbc4..be35bf307973 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4ff0ac8-6e0b-4c90-8926-7508a0520e3f", + "apim-request-id": "8cc1c83d-c287-4a26-99c9-52b14f0a0810", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:02 GMT", + "Date": "Mon, 17 Oct 2022 19:03:49 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json index 4e3413bd9f3b..c56f28bb5371 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "376", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "787a114b-af3b-4c6b-8a69-9390a26be318", + "apim-request-id": "c0b87bd9-02da-4b97-ade7-30fb008ac3c3", "Content-Length": "418", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:00 GMT", + "Date": "Mon, 17 Oct 2022 19:03:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint.json index 88e288554745..b4a653ddb7fe 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "382", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "502f5813-b50d-4f90-9690-33157eec0be0", + "apim-request-id": "b06a7fce-4e05-42e2-a1e8-888d4e67eb75", "Content-Length": "391", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:43:59 GMT", + "Date": "Mon, 17 Oct 2022 19:03:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index d3e05ac49698..b5038450f937 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "343", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89687108-c83a-478a-8c01-8189b33b209c", + "apim-request-id": "a6cb824d-9010-404c-8c44-237fddb5f8d8", "Content-Length": "501", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json index 44f51dc4bfd7..b5f2dba4d19f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c6085b4-84f8-454f-aea7-bb9fa2d9e4c7", + "apim-request-id": "be74c9ae-977c-4d4f-9a53-7110ef525618", "Content-Length": "395", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:00 GMT", + "Date": "Mon, 17 Oct 2022 19:03:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index 720b6179d024..ee41fa9d8aed 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_entities_async.pyTestRecognizeEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "356", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd46a113-3e28-4ccd-8240-93cc7b2a4d91", + "apim-request-id": "a951d455-c564-4e5e-a9be-e5cd89711f1d", "Content-Length": "498", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:01 GMT", + "Date": "Mon, 17 Oct 2022 19:03:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "283" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json index aea060753395..73b0df37211f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -33,14 +33,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3cb5dcf-29d3-413d-94dd-41d63ffb41a6", + "apim-request-id": "783a36e8-1a46-45c3-914a-830838a945b0", "Content-Length": "1938", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:08 GMT", + "Date": "Mon, 17 Oct 2022 19:03:56 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json index 566eed0ff94e..355bcbfc6487 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -33,14 +33,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eeccba49-99a9-4113-9880-873613344274", + "apim-request-id": "c137745a-131a-4ae7-b5b9-e46d3ee89506", "Content-Length": "1715", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:08 GMT", + "Date": "Mon, 17 Oct 2022 19:03:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_credentials.json index 1c3951d1b8fa..b361255e01d9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "184", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "4165cfb7-0bfb-4167-8162-0b292ba5fb3c", + "apim-request-id": "748dba00-3985-4306-a3ab-0384ce712fa7", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:11 GMT" + "Date": "Mon, 17 Oct 2022 19:03:59 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json index 36d1f65a433c..4993b25c5db7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "223", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -29,13 +29,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8265b7ca-df7f-4375-bc1f-12248a03f7cc", + "apim-request-id": "33f00742-6204-48e4-9c75-8c0ddcca68c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:17 GMT", + "Date": "Mon, 17 Oct 2022 19:04:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json index ab0e612f0be2..1688a332bcb0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "58854", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -5273,13 +5273,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "79f25da2-31bd-4745-bc3d-a07d0711f802", + "apim-request-id": "e97db181-1b83-4be3-838a-f349a1956390", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:12 GMT", + "Date": "Mon, 17 Oct 2022 19:04:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json index 0aa808b0fa56..bb9c46a638c2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "56061", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -5028,13 +5028,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ed135c83-14f3-4ae3-9f54-913c39f9c589", + "apim-request-id": "320fa9c7-bcde-46d0-8b88-8fd184c77450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:18 GMT", + "Date": "Mon, 17 Oct 2022 19:04:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bing_id.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bing_id.json index 19d233016a7b..3fa0f5cea69b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bing_id.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_bing_id.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "207", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "519ca6c0-ca34-4705-9f11-3ffc3bb231ea", + "apim-request-id": "feba429c-a90d-4de0-b430-9be367942e3b", "Content-Length": "906", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:20 GMT", + "Date": "Mon, 17 Oct 2022 19:04:10 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json index 54e2028835d2..7e00cc6a2204 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fa65cb6-d3d4-4e15-8cb4-db41a7d86441", + "apim-request-id": "71a9d7f0-8068-49c5-bfed-60a6aa518474", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:14 GMT", + "Date": "Mon, 17 Oct 2022 19:04:03 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "222" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -73,7 +74,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -81,7 +82,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -110,14 +111,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cb8829c-872c-49bb-a97e-1d8694dbce9c", + "apim-request-id": "53a2549c-ce54-4167-8490-6a1987200923", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:14 GMT", + "Date": "Mon, 17 Oct 2022 19:04:03 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -145,7 +147,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -153,7 +155,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -182,14 +184,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05cca2a0-20bc-4689-be1d-499affca6f89", + "apim-request-id": "ebfd7e21-6f15-4029-a92a-5641a71e233f", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:14 GMT", + "Date": "Mon, 17 Oct 2022 19:04:03 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index aea7228f0883..c78decb9f4f2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "168", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,11 +28,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c158bf19-1f74-4f48-8ddd-188ef092ea94", + "apim-request-id": "52339a3b-d249-48c5-9df9-b4f565d3fda2", "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:21 GMT", + "Date": "Mon, 17 Oct 2022 19:04:11 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index 57c8a9765ebc..79b38a067794 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e734887-8c06-4af4-927a-c56b1600323e", + "apim-request-id": "85d6d826-d4bd-4b57-9d03-b9cd2e4d5bc7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:20 GMT", + "Date": "Mon, 17 Oct 2022 19:04:10 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json index 4f1067aab2a8..5c128f272ce6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3189dd24-a095-401f-890c-84bfb77bb33f", + "apim-request-id": "39c5115d-589c-4d94-bb9b-bf082868a198", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:21 GMT", + "Date": "Mon, 17 Oct 2022 19:04:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json index 8cb20a9b1b7c..943e56f1e877 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "204", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -29,11 +29,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8b45f78-ebc1-48dc-89b3-bc5238ad9b2a", + "apim-request-id": "18058dbb-897f-4764-86f8-5032c7634ce6", "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:22 GMT", + "Date": "Mon, 17 Oct 2022 19:04:13 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json index 272136e8636c..621701c21ec7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "157", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15db2f90-d5be-4eb1-9cf9-71cbd4c7cd11", + "apim-request-id": "b18e8c1f-475c-4143-9c20-27352e32339a", "Content-Length": "260", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:17 GMT", + "Date": "Mon, 17 Oct 2022 19:04:05 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json index b2396df1e1d7..2b91780e459b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "157", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4265114-b37b-4281-9ee4-d0e52ea19f5f", + "apim-request-id": "48ba401c-ef66-414e-b6b4-0be564b840bf", "Content-Length": "260", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:17 GMT", + "Date": "Mon, 17 Oct 2022 19:04:05 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_errors.json index 4597c929bdab..d802464f3e9a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5407", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,10 +38,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "658822e9-38a2-4140-909f-9d1b3f1b05e3", - "Content-Length": "893", + "apim-request-id": "707fa30a-c24d-482d-8639-ddcc93facbc5", + "Content-Length": "903", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:17 GMT", + "Date": "Mon, 17 Oct 2022 19:04:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "4" @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_warnings.json index 08e5daf482ac..29a2e1a3b71a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_document_warnings.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "197", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3c245f1-d1c5-435c-88de-d7af63bd2748", + "apim-request-id": "538908ab-5a75-4881-a20a-a0a7ed0f0cc0", "Content-Length": "136", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:18 GMT", + "Date": "Mon, 17 Oct 2022 19:04:06 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json index ab6b1f7360ae..cd31f2958855 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -33,13 +33,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "16a061d8-cdd2-4849-848c-a1f2a5232ac3", + "apim-request-id": "d0d25aaa-582d-49d0-9d76-37ffe852f2e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:18 GMT", + "Date": "Mon, 17 Oct 2022 19:04:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json index 7e692f17c4d1..f9040dc3ec09 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "184", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "aaa380f7-93c8-425b-939b-3e3d73a7ca78", + "apim-request-id": "9bbec233-07bb-4da3-85d1-0a4e44b69d45", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:11 GMT" + "Date": "Mon, 17 Oct 2022 19:03:59 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json index e4b8c32f3ca2..aa794991440f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cbd1f29-54c0-41c1-b0ee-fa000b93f889", + "apim-request-id": "aedfc386-d5e7-4a6d-839c-683a0ed97ae9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:21 GMT", + "Date": "Mon, 17 Oct 2022 19:04:11 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json index 12332b630f84..bfbcf8da7779 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "167", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "354a48b6-5b90-46a4-bdc9-510a8130153a", + "apim-request-id": "07b3554b-f9bf-4603-9601-a58bc41fb38b", "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:21 GMT", + "Date": "Mon, 17 Oct 2022 19:04:11 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json index f5fe1d490b02..edb896a542cd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "254", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -33,10 +33,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "300156f7-6e7d-4f53-a5d3-5b7c1472ae8f", - "Content-Length": "556", + "apim-request-id": "c222b2cc-7c2b-4677-bf8a-e77c866a8428", + "Content-Length": "566", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:10 GMT", + "Date": "Mon, 17 Oct 2022 19:03:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -64,7 +65,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json index 5ffb19f7b915..b76d37eafde3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -33,11 +33,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d0154aa-992f-423d-b5d3-b07ff88dcce0", + "apim-request-id": "1e3cde2c-7ba5-4c89-9181-cf6c0cab38ba", "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:10 GMT", + "Date": "Mon, 17 Oct 2022 19:03:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "15" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json index 691b81a7c458..f3ba31cafc8d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "233", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a8bad69-d6b8-4d7a-920d-28747ed8f185", - "Content-Length": "393", + "apim-request-id": "857c5e85-6950-426d-b474-3a8421e06942", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT", + "Date": "Mon, 17 Oct 2022 19:04:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json index 8a1ad7195ddd..b5f90ec2392f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "233", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e50ce6a-b4b8-495b-938a-359c30271dea", - "Content-Length": "393", + "apim-request-id": "ea714182-0b19-4a43-b722-4c538436c76d", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT", + "Date": "Mon, 17 Oct 2022 19:04:03 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json index d65d1daac0e7..135dfad6507f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "218", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14b205d5-7e4c-473a-85be-ff8f7f79c0e1", + "apim-request-id": "c280df62-8087-43c2-9def-d335635157a5", "Content-Length": "1087", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:19 GMT", + "Date": "Mon, 17 Oct 2022 19:04:08 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json index 6bec33fbdcec..df1cd0dcf137 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "108", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94ac0048-cad7-4d52-b56d-4283a1163885", + "apim-request-id": "711c0412-fc05-4872-b61c-acf9fb1a1a89", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:20 GMT", + "Date": "Mon, 17 Oct 2022 19:04:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_offset.json index 303e94cd0be2..f672ca875f6e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_offset.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "207", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d09fb515-8cee-4de8-99a3-310683b9bbae", + "apim-request-id": "645d1874-c86e-4346-a15a-ee72004719ea", "Content-Length": "906", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:19 GMT", + "Date": "Mon, 17 Oct 2022 19:04:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json index 32f31b8cf918..74a0ff443053 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "340", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d34f68cc-db54-4cfa-9560-177767247a78", + "apim-request-id": "9b1f26a8-1a47-4925-9f89-c46bc9204ed6", "Content-Length": "418", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:12 GMT", + "Date": "Mon, 17 Oct 2022 19:04:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json index 703beaae42ab..fc46bc394eac 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "348", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82e3ae9f-c622-462d-a84b-555811c1c099", + "apim-request-id": "27179f9c-7ae4-4b6f-8c50-fb8bfdcec281", "Content-Length": "292", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:44:11 GMT", + "Date": "Mon, 17 Oct 2022 19:03:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_pass_cls.json index c7d9214294c3..a9cd8575fe98 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "185", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a9d3a29-e0d6-4ac2-9bf3-e5a3e087d96d", + "apim-request-id": "8917275f-fa68-432c-817a-71ae318bf7aa", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:19 GMT", + "Date": "Mon, 17 Oct 2022 19:04:09 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_passing_only_string.json index 7ed46b7a8f29..b37d0242b748 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "342", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10cdd6a5-5b82-4924-a2ec-ad97ba955468", + "apim-request-id": "590c5840-0431-4fb2-bd28-57910cbe0c0d", "Content-Length": "1877", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:10 GMT", + "Date": "Mon, 17 Oct 2022 19:03:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json index 9c3c1773ee98..e4d03dc17da9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "335", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5503377-3b2c-47bc-9af3-4e317d02696b", + "apim-request-id": "9e297632-00ff-4190-b83e-f71a86a02d97", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:13 GMT", + "Date": "Mon, 17 Oct 2022 19:04:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json index 2d4f946f2e2f..63b29d748e2e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78b44919-b26a-4a92-980e-77e93b5b6222", + "apim-request-id": "c1c6f8cf-581a-4a61-ae7d-85b8015dd4a4", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT", + "Date": "Mon, 17 Oct 2022 19:04:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -73,7 +74,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -81,7 +82,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -110,10 +111,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "4719a477-c9f5-4861-b1a1-2d6882b2823e", + "apim-request-id": "a673b9e9-a18c-4303-afd6-1c0c88850bf5", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT" + "Date": "Mon, 17 Oct 2022 19:04:04 GMT" }, "ResponseBody": { "error": { @@ -123,7 +124,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -131,7 +132,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -160,14 +161,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd062c51-8e22-4339-9d63-9676b223f99a", + "apim-request-id": "7324db9d-eee1-4200-a86f-16f1475ee4c5", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT", + "Date": "Mon, 17 Oct 2022 19:04:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json index e9d75fe8ad8f..685b1c23c07a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "366", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -49,14 +49,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7c1b2e5-e98e-4d0a-b014-5b0f4a48045d", + "apim-request-id": "8d5c386b-94d3-46aa-9aa9-a2acdbee6743", "Content-Length": "754", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:12 GMT", + "Date": "Mon, 17 Oct 2022 19:04:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json index c9b9f4479608..bb796e743665 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "75", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d59836e-14f3-43c6-a81c-432cf121ca55", + "apim-request-id": "5d0e97b4-35d1-4abf-b49e-c2e2be8541a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:20 GMT", + "Date": "Mon, 17 Oct 2022 19:04:10 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_too_many_documents.json index e422496a2afb..f6610db2d010 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "394", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -53,13 +53,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b496e508-85b5-4983-a1b8-f4f80a08bb3c", + "apim-request-id": "fd99911b-942c-4e2f-b776-b5a00446d5d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:10 GMT", + "Date": "Mon, 17 Oct 2022 19:03:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_user_agent.json index f80793cfa117..e5e0171e2b7b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8393a57e-15c4-4833-896e-b94870abe893", + "apim-request-id": "24ca8f1a-1479-4db4-bb8e-f644bcbc3372", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:15 GMT", + "Date": "Mon, 17 Oct 2022 19:04:04 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json index 17106f8a90a1..22b90a596a0b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,11 +38,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "761a4ff5-a4af-432d-84fa-8348dfc18dc1", + "apim-request-id": "ff64669b-31e0-4991-bb48-432995102a3f", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:13 GMT", + "Date": "Mon, 17 Oct 2022 19:04:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json index 2f41f3b5c9de..287a68021008 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "378", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "854fea1d-9767-42e2-be34-13642434148c", - "Content-Length": "985", + "apim-request-id": "1f4d3e84-8aaa-4d86-9daf-db05e5222747", + "Content-Length": "1000", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:12 GMT", + "Date": "Mon, 17 Oct 2022 19:04:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -58,7 +59,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -80,7 +81,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index 43368a8b9591..c993c4212c12 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,11 +38,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "732c8e4f-75ba-4fe9-bb29-208e0da20068", + "apim-request-id": "fd6c6fbf-6586-4a23-9308-e1cc4ddacad3", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:14 GMT", + "Date": "Mon, 17 Oct 2022 19:04:02 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "21" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json index 39ad3c71ccf0..e18129d6b37d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,13 +38,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57a3ff60-56a2-4fca-a224-9f074417a3db", - "Content-Length": "985", + "apim-request-id": "5b7a8c09-0b1c-4a52-b7fb-d1d16c61c506", + "Content-Length": "1000", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:13 GMT", + "Date": "Mon, 17 Oct 2022 19:04:02 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -58,7 +59,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -80,7 +81,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index cfc79a477101..0468ff269a63 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6313d1c2-6598-479c-a5a5-717d6848e408", + "apim-request-id": "8adc1382-0756-4e67-9161-0a81ca041241", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:14 GMT", + "Date": "Mon, 17 Oct 2022 19:04:02 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json index f10351e9c746..c85ac46b0cac 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -32,14 +32,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4ce7195-ddfa-4362-b951-1d5cf2f15a76", + "apim-request-id": "537979ad-1b44-48fe-94ae-a4885c2ff319", "Content-Length": "1938", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:22 GMT", + "Date": "Mon, 17 Oct 2022 19:04:14 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json index 6bacffa03826..e234fc9c3198 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -32,14 +32,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0443bf5e-c4d1-4a6c-93cc-ebc70ae50d12", + "apim-request-id": "1121e958-fa47-4ef8-8a50-8bb1b8d94e90", "Content-Length": "1715", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:22 GMT", + "Date": "Mon, 17 Oct 2022 19:04:14 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_credentials.json index 62f6b6a35444..2a2c84e2d358 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "184", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "7d38df53-d5c4-412f-aba4-213b7ff8721d", + "apim-request-id": "a860e431-4b67-49ee-885a-5897fa8ee05f", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:24 GMT" + "Date": "Mon, 17 Oct 2022 19:04:16 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json index eafc1a00a841..dd8b503b7827 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "223", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,13 +28,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9e62721c-fa7c-4e86-835e-f37723388ce6", + "apim-request-id": "97f3a107-9e19-499b-86cd-fc2bf62466c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:30 GMT", + "Date": "Mon, 17 Oct 2022 19:04:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json index 664ccb6f7188..1c7eec3e5189 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "58854", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -5272,13 +5272,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "7c657503-466c-41c8-a58f-f47ed6cdf774", + "apim-request-id": "bcc4e3df-8456-48bc-8a8c-c1cb80e3e3aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:25 GMT", + "Date": "Mon, 17 Oct 2022 19:04:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json index 75f97b4b79ea..f835fb00d226 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "56061", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -5027,13 +5027,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2ce1b499-b9b1-4d9b-a251-16aa1ad90948", + "apim-request-id": "e1f77fb5-1f1b-4019-b7ac-e73d2be8c180", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:32 GMT", + "Date": "Mon, 17 Oct 2022 19:04:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bing_id.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bing_id.json index 255cf62bbd2e..da95351e3173 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bing_id.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_bing_id.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "207", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,11 +27,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6d4cea7-05d6-4d7b-be57-2864ce0af661", + "apim-request-id": "fc3976fc-1d9f-4b03-9a34-9e12b097dd66", "Content-Length": "906", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:33 GMT", + "Date": "Mon, 17 Oct 2022 19:04:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json index a9a20d6bd6ab..8a027dd6a2b1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_client_passed_default_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8b4a2b4-dfa6-44b8-900a-1a7e2a8668b9", + "apim-request-id": "571b646e-da13-41fb-bce1-8c1cf5ce73d2", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:28 GMT", + "Date": "Mon, 17 Oct 2022 19:04:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "249" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -72,14 +73,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -108,14 +109,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a39a224-b830-4be8-907d-3ec046b23b3b", + "apim-request-id": "73309fc6-ab84-42ab-9c0d-3f37ef940e66", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:28 GMT", + "Date": "Mon, 17 Oct 2022 19:04:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -143,14 +145,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -179,14 +181,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69552626-9a38-4127-ba1e-d5762506e2e1", + "apim-request-id": "1531cbf5-9b87-4718-9500-454788319f2c", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT", + "Date": "Mon, 17 Oct 2022 19:04:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index 6e4f386eca97..6b95b0bdaf35 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "168", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc1a8f00-0519-482d-a6d5-e821dfd13f57", + "apim-request-id": "b1b08f96-bb58-4de1-bce9-839a4d0c5dfb", "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:34 GMT", + "Date": "Mon, 17 Oct 2022 19:04:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index 14a06d338a09..4a309e37097d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4977e8a-4d26-4f80-89ed-866b21f752a8", + "apim-request-id": "5dbde504-73f0-4744-9a3c-212d7fb57ec2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:34 GMT", + "Date": "Mon, 17 Oct 2022 19:04:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json index 50ded0021b69..4394898273fd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe5f78a2-8bbd-45d4-9475-623bdabd917a", + "apim-request-id": "b933abb3-4f3c-4156-883d-fd9f041d7119", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:34 GMT", + "Date": "Mon, 17 Oct 2022 19:04:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json index b2966423d5e3..e3b2de671731 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "204", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e68cf048-223b-4058-8a8c-6aed5b53387d", + "apim-request-id": "b295a80e-d63c-40c6-9938-5afe64e32277", "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:35 GMT", + "Date": "Mon, 17 Oct 2022 19:04:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json index ec56503da11a..576ba9488086 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "157", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94e2417e-5300-49fc-88cc-a4de98179053", + "apim-request-id": "d47f8355-9b96-4cdf-8c27-b49278a47914", "Content-Length": "260", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:30 GMT", + "Date": "Mon, 17 Oct 2022 19:04:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json index 877ea8e87cbb..947804b9b36e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "157", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5acde432-4105-411e-98b3-7932c6d4565c", + "apim-request-id": "47970eaf-5826-4ee4-a4cc-6e6ec6f7fd86", "Content-Length": "260", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:30 GMT", + "Date": "Mon, 17 Oct 2022 19:04:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_errors.json index 08beca5c20cc..6693cddfcff8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5407", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,13 +37,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec7ddb5e-cfc4-417d-af28-fb3dc115fadd", - "Content-Length": "893", + "apim-request-id": "181fa033-191d-4330-aa23-ec8059131360", + "Content-Length": "903", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:31 GMT", + "Date": "Mon, 17 Oct 2022 19:04:21 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_warnings.json index 43a9af28e652..c79fe24edbd2 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_document_warnings.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "197", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70846bab-8f28-4300-88e8-d149b33c97d7", + "apim-request-id": "46d3efc1-714b-412a-8da4-8630cbfed020", "Content-Length": "136", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:31 GMT", + "Date": "Mon, 17 Oct 2022 19:04:22 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json index 4d9c101492ee..0f2f3530f343 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "249", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -32,13 +32,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "13c279aa-372a-45cd-89d9-7c525c1e5792", + "apim-request-id": "784b7496-ef79-4c38-8cb0-39839afa55f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:31 GMT", + "Date": "Mon, 17 Oct 2022 19:04:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json index 1acb30185a37..d71ef52f008a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "184", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "9bb6add3-28bf-4e81-85cf-12e64c8e217d", + "apim-request-id": "139c55a3-0ff9-4810-bee6-408bb2578634", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:24 GMT" + "Date": "Mon, 17 Oct 2022 19:04:16 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json index eaecc1bf4bd4..0489fc3151fa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f90d0c8c-92d4-4e08-bdc7-aacd0fa2c256", + "apim-request-id": "628add43-ac21-443b-a79a-2463ddf37661", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:34 GMT", + "Date": "Mon, 17 Oct 2022 19:04:26 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json index 03fcb4e5b28e..d66cd56c5a55 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_explicit_set_string_index_type_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "167", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19a9ed45-2bf8-4110-aea5-39e133bddb2e", + "apim-request-id": "12e859f8-38a2-4f71-99bf-afc276853446", "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:34 GMT", + "Date": "Mon, 17 Oct 2022 19:04:27 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json index aead36f39ed1..58aaa25b2382 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "254", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -32,10 +32,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8005d8fa-3c7f-470c-92e8-b85313a309aa", - "Content-Length": "556", + "apim-request-id": "7d087747-2c53-47ef-96be-06376024ff28", + "Content-Length": "566", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:23 GMT", + "Date": "Mon, 17 Oct 2022 19:04:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -63,7 +64,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json index 35d97bb48c51..9b51829da91b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "249", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -32,14 +32,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9ca39b8-05ed-4839-83d7-8d67aafb3199", + "apim-request-id": "366701fa-0fff-4aa3-b768-3b04f4864090", "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:23 GMT", + "Date": "Mon, 17 Oct 2022 19:04:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json index 0e99289ef285..a80cddb44261 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "233", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4565045-869f-4a54-9ba9-fbb48164ae55", - "Content-Length": "393", + "apim-request-id": "dfc635b8-6843-4168-b03c-bbe66d2d3488", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT", + "Date": "Mon, 17 Oct 2022 19:04:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json index e974c5d56ca4..d20639ed874a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "233", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bf8b999-9924-4c6f-ac1b-61d32a5f4295", - "Content-Length": "393", + "apim-request-id": "18f4d88c-54d1-4c97-88ca-75c24cff0f57", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT", + "Date": "Mon, 17 Oct 2022 19:04:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json index 707710aa2357..d3da3695c735 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_language_kwarg_spanish.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "218", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a14865d-ca62-45f0-bd20-d83dc421de22", + "apim-request-id": "d2c1b00f-152b-4a71-bf42-ea9763fadcfa", "Content-Length": "1087", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:32 GMT", + "Date": "Mon, 17 Oct 2022 19:04:24 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json index 13505fc2f92b..0f460661930e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_no_offset_v3_linked_entity_match.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "108", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e761cea4-50a3-442e-b13f-d02b6713ecf5", + "apim-request-id": "d2c52d96-d870-4a09-9077-ce7794c1d347", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:33 GMT", + "Date": "Mon, 17 Oct 2022 19:04:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_offset.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_offset.json index e3000cff9496..05dd2e17ef0c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_offset.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_offset.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "207", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d64aaa3-ae6e-498c-90b8-027d8ded0515", + "apim-request-id": "0586d404-5385-4e64-ab82-39857a9fd3e2", "Content-Length": "906", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:33 GMT", + "Date": "Mon, 17 Oct 2022 19:04:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json index 25017e966c21..e997e495546f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "340", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "974db391-4d6a-432e-94bb-ef0dcac3ed4f", + "apim-request-id": "1cd8746a-c8ce-4da5-8bb9-6668ab75ea4c", "Content-Length": "418", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:24 GMT", + "Date": "Mon, 17 Oct 2022 19:04:16 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json index 1d4895cfc659..11778746fb7e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "348", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd140e03-d4eb-464b-a8bf-4d282a9279e8", + "apim-request-id": "b8b6c8d0-bbcf-4b5d-8c29-5556d7780c07", "Content-Length": "292", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:44:24 GMT", + "Date": "Mon, 17 Oct 2022 19:04:15 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_pass_cls.json index 73543def3ad3..faefc23aac45 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "185", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "725a5622-3fa2-4019-9f8d-3a8dc19e157b", + "apim-request-id": "2b83e36b-dd0e-460a-a73b-bc08e935e703", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:32 GMT", + "Date": "Mon, 17 Oct 2022 19:04:24 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_passing_only_string.json index bf64e3bf9b8e..65d3acab4120 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "342", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cb7fe78-9c93-46b2-9699-4c3cd1ac62a1", + "apim-request-id": "1fc4224c-26d7-4406-92b0-88aba9d5eb1c", "Content-Length": "1877", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Wed, 08 Jun 2022 01:44:23 GMT", + "Date": "Mon, 17 Oct 2022 19:04:14 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json index 21dbf29c158d..4b146fd5b14b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_per_item_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "335", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e316d394-a543-4b7e-857b-df2110739697", + "apim-request-id": "f62ac56b-213f-4d83-830c-a2ea26e47a19", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:26 GMT", + "Date": "Mon, 17 Oct 2022 19:04:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json index b5ea98ece044..0357dc7b7793 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53fd2afb-d2cd-4c34-9f99-724d54d34238", + "apim-request-id": "e3f04535-163b-4cc0-ac0c-4401602debdb", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT", + "Date": "Mon, 17 Oct 2022 19:04:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", @@ -72,14 +73,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -108,10 +109,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "ac9cce72-d145-4ac2-bd13-f386f9f7ba07", + "apim-request-id": "c346bc4b-00ee-4d18-b5b3-e1407464b3c5", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT" + "Date": "Mon, 17 Oct 2022 19:04:20 GMT" }, "ResponseBody": { "error": { @@ -121,14 +122,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -157,14 +158,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98b6f1f3-dff5-4a44-97a2-56b75baa7592", + "apim-request-id": "1ce542eb-5694-49d1-af20-eb1aa907063b", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:29 GMT", + "Date": "Mon, 17 Oct 2022 19:04:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json index 633dc6cf38ba..157564f08468 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "366", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f05096aa-4180-4e40-ba7a-49261370a0e8", + "apim-request-id": "d78ebcaf-c361-4c3d-b0d9-819bb646fc12", "Content-Length": "754", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:25 GMT", + "Date": "Mon, 17 Oct 2022 19:04:17 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json index f0f0c8fa3098..a2d7944ceeec 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_string_index_type_not_fail_v3.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "75", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a29611a-c483-484b-b107-0161a0b86d89", + "apim-request-id": "8d74b975-d214-4a0f-8964-1acffdd0c3b2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:33 GMT", + "Date": "Mon, 17 Oct 2022 19:04:25 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_too_many_documents.json index 23ddb93ac93d..6ddf0f2d8619 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "394", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -52,13 +52,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2de81298-84a0-4038-869c-172d0506dd2b", + "apim-request-id": "ad7f6b90-c44b-4dbf-a863-095c0b246511", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:23 GMT", + "Date": "Mon, 17 Oct 2022 19:04:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_user_agent.json index 07ffea1b8171..b243dac8308b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "595804ce-0ebf-48ca-849a-7948a62f6993", + "apim-request-id": "24e7f5ec-f33c-4c55-b689-039d5a42db3a", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:30 GMT", + "Date": "Mon, 17 Oct 2022 19:04:20 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json index 599ba514ed75..e526c83aead7 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "858e159c-6093-428d-82bc-f02ad33276a7", + "apim-request-id": "0cac2f9a-d145-4972-8f21-40aa535d3198", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:25 GMT", + "Date": "Mon, 17 Oct 2022 19:04:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json index 036fdcddfb75..7f5224a6b6d6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "378", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,10 +37,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9212d5a8-cffb-4e13-8109-8cd361a5e52e", - "Content-Length": "985", + "apim-request-id": "c0a89ca0-4295-4a83-9d15-8d51d828ccf4", + "Content-Length": "1000", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:25 GMT", + "Date": "Mon, 17 Oct 2022 19:04:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" @@ -57,7 +58,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -79,7 +80,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027fr\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index f13941fbae19..f3523f7729ab 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "339", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eebb14c3-8a1e-4158-bd5f-65587916da3e", + "apim-request-id": "11429f2a-423e-49e4-a15f-c344d7b2de36", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:28 GMT", + "Date": "Mon, 17 Oct 2022 19:04:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json index cbd724379bf2..98dfd63e0445 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,10 +37,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1920c619-123d-46ac-8c55-cdd92ec6657c", - "Content-Length": "985", + "apim-request-id": "18d623ed-1640-4170-a30e-ae46b89f1f44", + "Content-Length": "1000", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:26 GMT", + "Date": "Mon, 17 Oct 2022 19:04:18 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -57,7 +58,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, @@ -79,7 +80,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027de\u0027. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index 91e925bf371e..41638eab7b68 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_linked_entities_async.pyTestRecognizeLinkedEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "352", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "EntityLinking", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e4acc5b-5840-4091-bda7-1d86b0d1051d", + "apim-request-id": "d0437fb6-cea0-4246-8e9e-282d0eccb29e", "Content-Length": "214", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:26 GMT", + "Date": "Mon, 17 Oct 2022 19:04:19 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "kind": "EntityLinkingResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json index c9ca98774cb1..816e1d868613 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "421", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afca5fee-f224-4a45-a55e-d1ea8c5c05c9", + "apim-request-id": "52915538-ec7d-4544-9621-66692313fb97", "Content-Length": "1123", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:35 GMT", + "Date": "Mon, 17 Oct 2022 19:04:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json index b972d3a331c6..ec4d2ebb533b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "421", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5814d884-378e-4cfa-90e1-feb9597e2470", + "apim-request-id": "028f6b1b-0a22-4abd-a793-25b8235c64c8", "Content-Length": "1123", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:35 GMT", + "Date": "Mon, 17 Oct 2022 19:04:28 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_credentials.json index 59f48dd2c6cb..689d4de06d61 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_credentials.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "191", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "a822c675-4116-4667-86f2-677c55d4b57c", + "apim-request-id": "782f2cb0-3176-4236-9bc8-f73fd62d2504", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:37 GMT" + "Date": "Mon, 17 Oct 2022 19:04:31 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_model_version_error.json index 969908f374ae..68d56c045c3c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_bad_model_version_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "230", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -29,13 +29,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b12588bb-24ad-49ca-8fd2-88aeee1fc819", + "apim-request-id": "1732fc74-61dc-491f-99a5-d21f8c413bd6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:43 GMT", + "Date": "Mon, 17 Oct 2022 19:04:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json index 7e71b7d1f04b..3565d044143b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "58861", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -5273,9 +5273,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e236f26c-34fd-431f-86c8-2c2bbb9ba494", + "apim-request-id": "0adef3da-6a58-4f36-af32-33f519873847", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:39 GMT", + "Date": "Mon, 17 Oct 2022 19:04:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json index cc08746e0c93..3f18d61b8995 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "56068", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -5028,13 +5028,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8afb45bf-37a8-4beb-b3f7-da1da6213d12", + "apim-request-id": "76c55038-b5bf-4d5a-880c-74fc42933a5b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:45 GMT", + "Date": "Mon, 17 Oct 2022 19:04:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter.json index 51df00c26bb0..d63066191de9 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "244", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9caaaed6-601e-4aa4-8b3d-b2e90972fa7c", + "apim-request-id": "52bf57f9-3c22-486c-afc1-45192b0f7229", "Content-Length": "528", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:47 GMT", + "Date": "Mon, 17 Oct 2022 19:04:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -76,7 +77,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -84,7 +85,7 @@ "Connection": "keep-alive", "Content-Length": "289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -106,14 +107,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "431942fb-bdec-4b85-b3e5-0a5246f044b1", + "apim-request-id": "6bd396bf-5acb-4431-96d5-ec695eec33b1", "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:47 GMT", + "Date": "Mon, 17 Oct 2022 19:04:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json index 48e843333318..12163c4b74cd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "306", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -32,14 +32,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77eed83c-4495-416b-bf0f-3cc952781a8f", + "apim-request-id": "bca0dd2a-6af9-45d5-8c4a-3d1992169d34", "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:47 GMT", + "Date": "Mon, 17 Oct 2022 19:04:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json index 96844728b3a4..f6680336c3a4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b6e4668-4131-4e28-92fb-f817e99c44ea", + "apim-request-id": "ae60c427-4b7e-4656-aa6f-13fd8f6c8de9", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:41 GMT", + "Date": "Mon, 17 Oct 2022 19:04:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -76,7 +77,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -84,7 +85,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -113,14 +114,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9da21c3c-5366-4ff1-964e-9900d914aded", + "apim-request-id": "ace00b84-61d5-44b2-b4ac-2debac0e5164", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:41 GMT", + "Date": "Mon, 17 Oct 2022 19:04:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -151,7 +153,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -159,7 +161,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -188,14 +190,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea66665b-0172-4fab-b295-db19366a86a3", + "apim-request-id": "a130b108-2410-4f54-9171-002df1e3385e", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:41 GMT", + "Date": "Mon, 17 Oct 2022 19:04:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index 036ab8a65313..1c943b0d1b48 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "175", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dc998b7-e91a-4dc1-b157-8ff62b1cddea", + "apim-request-id": "943b46d8-9bd6-4ce5-be4e-89f00f09ddf9", "Content-Length": "172", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:48 GMT", + "Date": "Mon, 17 Oct 2022 19:04:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index cff3ffe0e7dc..27d1dd7e51f6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32e078e4-5788-4c90-82e6-f7b18bc57150", + "apim-request-id": "6fb93f15-a401-4d5e-9cb4-5498d7bce7ca", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:48 GMT", + "Date": "Mon, 17 Oct 2022 19:04:43 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs.json index 65f4eba5fd23..e2a3a81bf4ad 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,10 +22,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08652166-0968-47a1-9266-2fb7f1c5709b", + "apim-request-id": "112087f0-92d7-4f53-b65f-8914d60afceb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:49 GMT", + "Date": "Mon, 17 Oct 2022 19:04:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json index 1d407085fae2..68773338233e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "211", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43b3b8ea-0027-445a-bd72-151a48a92ef3", + "apim-request-id": "2155a69f-2cd1-43f1-bd22-9e5df59415bb", "Content-Length": "185", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:49 GMT", + "Date": "Mon, 17 Oct 2022 19:04:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json index e8af85b0b6ea..fb43356ecfdb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "164", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76eec521-6d86-4683-a25e-a5ba0148b938", + "apim-request-id": "20b62516-d6fe-4b03-a404-05b37fa042aa", "Content-Length": "267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:43 GMT", + "Date": "Mon, 17 Oct 2022 19:04:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json index f3cc93796277..b94865335cad 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "164", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7ed258b-7eeb-4ea5-b3b4-3d949a635cc1", + "apim-request-id": "93754fea-7fdb-43f6-ad13-44c8a1678cd8", "Content-Length": "267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:43 GMT", + "Date": "Mon, 17 Oct 2022 19:04:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_errors.json index fe6990c0dd1c..b9834605c384 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "5414", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,10 +38,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81b12b7d-f26a-474c-9396-c897e853d923", - "Content-Length": "935", + "apim-request-id": "f4c922db-29b3-4e1e-8c52-e1a174307b35", + "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:43 GMT", + "Date": "Mon, 17 Oct 2022 19:04:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "4" @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_warnings.json index 39995a9f04dc..5c60db464bbc 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_document_warnings.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "204", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74378c9c-81cd-4522-b057-b77fa00d7aa1", + "apim-request-id": "2ba2aa5d-9a66-4b22-9683-df2e2ce33404", "Content-Length": "201", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:44 GMT", + "Date": "Mon, 17 Oct 2022 19:04:39 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json index 0d5eb81237e6..92a320dde453 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -33,13 +33,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8665c4c3-6da3-4b2b-bc16-3c8bc2c32123", + "apim-request-id": "ab703499-a857-4e10-9d31-dd129ffbdea9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:44 GMT", + "Date": "Mon, 17 Oct 2022 19:04:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_empty_credential_class.json index 1609e6293367..8dc08df7f158 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_empty_credential_class.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "191", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,10 +28,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "a260e787-871d-4b59-9a7d-0ae6f895a419", + "apim-request-id": "6f7fb760-3645-4852-be3f-dc39e71b3ad2", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:37 GMT" + "Date": "Mon, 17 Oct 2022 19:04:31 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json index 372de08f9bc8..79ee3d18e726 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -22,14 +22,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dd10054-1638-408c-ba20-fec6051c3d4f", + "apim-request-id": "fdf53290-4454-4e83-a307-a23068447875", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:49 GMT", + "Date": "Mon, 17 Oct 2022 19:04:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json index 12b759e5f7c4..31abc08f7fcb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "174", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fd48e51-908e-4967-9498-2887eced76d9", + "apim-request-id": "a836b021-a89b-4807-97a9-57e491661de0", "Content-Length": "172", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:49 GMT", + "Date": "Mon, 17 Oct 2022 19:04:44 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_all_errors.json index ef3fd0192e11..0cf82a2b62c1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_all_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "259", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,10 +38,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94407100-122f-4b87-b65e-236fe70c2285", - "Content-Length": "761", + "apim-request-id": "c648f1ae-472b-4bda-a434-af09881f89dc", + "Content-Length": "771", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:36 GMT", + "Date": "Mon, 17 Oct 2022 19:04:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" @@ -69,7 +70,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_some_errors.json index 7585f1c9328b..20b766713095 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_input_with_some_errors.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c572c8e6-9673-486c-bece-7b9dbd05f571", - "Content-Length": "698", + "apim-request-id": "11f1b26f-7584-4b88-8d42-3e97c1c916c5", + "Content-Length": "713", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:36 GMT", + "Date": "Mon, 17 Oct 2022 19:04:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -66,7 +67,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json index 79a67b61f815..7e386cb7a944 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "240", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,10 +28,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9afbdd1-c7b1-42c9-8a8b-08899339b6ed", - "Content-Length": "435", + "apim-request-id": "54f5d124-1367-4fd2-82b6-4fa4f6b05ff4", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:42 GMT", + "Date": "Mon, 17 Oct 2022 19:04:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json index 9e841a5064f1..ea9c7eb9714c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "240", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,13 +28,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73a92b5e-d82f-4583-8162-d89d2dd843f9", - "Content-Length": "435", + "apim-request-id": "7b31128f-836d-4019-afec-ca2a5448b979", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:42 GMT", + "Date": "Mon, 17 Oct 2022 19:04:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -48,7 +49,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_language_kwarg_english.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_language_kwarg_english.json index 9830db6d82bc..21b40200cee4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_language_kwarg_english.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_language_kwarg_english.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "225", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7050cb0-491b-4bc6-aed8-281731782391", + "apim-request-id": "7d8a10a9-29c5-4a87-a9fe-037d8e6cc765", "Content-Length": "626", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:45 GMT", + "Date": "Mon, 17 Oct 2022 19:04:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_out_of_order_ids.json index 5eaa9237b472..7d5bcaac6fda 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_out_of_order_ids.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "347", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6700f8e3-e36e-4cb0-bf18-892837a34fff", + "apim-request-id": "b9a3e632-cc2e-48d7-ba0c-b94434c5ab14", "Content-Length": "505", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:37 GMT", + "Date": "Mon, 17 Oct 2022 19:04:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json index 4ed3a2288192..2eee8c5a422a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "355", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85245655-51ec-4648-9354-d0f222378ab5", + "apim-request-id": "dcc658e3-cb67-4390-a7d7-b85ef572a4e0", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:44:37 GMT", + "Date": "Mon, 17 Oct 2022 19:04:30 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_pass_cls.json index 3840060bc885..0879b9b69817 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_pass_cls.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "192", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dcaf077-73b7-47d9-a935-0eabd856a9c6", + "apim-request-id": "be6dec34-f178-461b-9d7f-c12111e05813", "Content-Length": "189", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:45 GMT", + "Date": "Mon, 17 Oct 2022 19:04:41 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_passing_only_string.json index c2e7710fe702..bc2e60112c07 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_passing_only_string.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "464", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -43,14 +43,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3005318-938d-4f1a-adfa-1b5df67f1f54", + "apim-request-id": "118c201b-bb65-422c-ba99-685702fdddfd", "Content-Length": "1285", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:36 GMT", + "Date": "Mon, 17 Oct 2022 19:04:29 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json index a57840ca7bf0..6b743ddb66ec 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "342", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "399ff6bb-8646-47b9-83f8-3ff8fdb58ea9", + "apim-request-id": "e3da0b4e-6a17-4503-975f-7ea2508869ec", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:40 GMT", + "Date": "Mon, 17 Oct 2022 19:04:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_phi_domain_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_phi_domain_filter.json index aca5b7527913..b82f45554192 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_phi_domain_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_phi_domain_filter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "236", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -29,14 +29,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2ed1f6a-6c4f-4988-8aab-471bdeca0a42", + "apim-request-id": "8621ed5f-07c6-4f77-ae6b-0b59220318d3", "Content-Length": "403", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:47 GMT", + "Date": "Mon, 17 Oct 2022 19:04:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_redacted_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_redacted_text.json index 59f5ca0a6c68..ddfcf6c02730 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_redacted_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_redacted_text.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "186", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c9771a3-a1f1-4463-a431-3ea9841e8b74", + "apim-request-id": "f1797da1-17eb-4030-81e5-f013b1348d94", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:45 GMT", + "Date": "Mon, 17 Oct 2022 19:04:42 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json index aa6433afc852..32cc94c71c9b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8412614d-22fe-4f32-aefb-128b6f8e5ded", + "apim-request-id": "21ab7b26-dbe0-45bb-a404-4c6300fbd9e6", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:42 GMT", + "Date": "Mon, 17 Oct 2022 19:04:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -76,7 +77,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -84,7 +85,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -113,10 +114,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "a62bfe59-f04e-43b4-bca9-d720a14a82eb", + "apim-request-id": "9acaf66c-3eb6-446b-a07a-6129fe186bda", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:42 GMT" + "Date": "Mon, 17 Oct 2022 19:04:37 GMT" }, "ResponseBody": { "error": { @@ -126,7 +127,7 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -134,7 +135,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -163,14 +164,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46566696-47a1-42aa-8725-e224f1e4b387", + "apim-request-id": "7566742e-af17-4e50-bad6-e037ad73d743", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:42 GMT", + "Date": "Mon, 17 Oct 2022 19:04:37 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json index 4673f4b9120f..7c19f8f165ac 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "373", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -49,14 +49,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "743f7e9a-37cf-4cbe-9ae6-75663c765b0d", + "apim-request-id": "94b0d50b-e328-4764-9e18-a2c825665bea", "Content-Length": "841", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:39 GMT", + "Date": "Mon, 17 Oct 2022 19:04:32 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_too_many_documents.json index d77109da6683..f4c3ba37698a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_too_many_documents.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "401", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -53,13 +53,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "cb2de25c-3200-4cf4-8fbe-0c8b3ddfd89a", + "apim-request-id": "7a062e68-da21-4944-8622-d5e5de20ca3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:36 GMT", + "Date": "Mon, 17 Oct 2022 19:04:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_user_agent.json index 86bc14c6cbad..02fc65c3d2ae 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_user_agent.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa9b7146-2f24-4b9f-baae-002220d3f58c", + "apim-request-id": "f17d9be0-990b-4345-9166-dc9bf05ec600", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:43 GMT", + "Date": "Mon, 17 Oct 2022 19:04:38 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json index bcb67e8ebba0..6d50455e696c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "379", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbed0484-b503-48b5-ae37-fe0e3b41b820", + "apim-request-id": "709385b2-8080-458c-8989-510a68cfe659", "Content-Length": "410", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:40 GMT", + "Date": "Mon, 17 Oct 2022 19:04:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json index 5bf75a9cd97d..eb4a2095c528 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "385", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5764547-dc63-46b9-ae19-abe660272ee2", + "apim-request-id": "52c8249e-a4ea-4e37-af5e-0107defbc89d", "Content-Length": "410", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:39 GMT", + "Date": "Mon, 17 Oct 2022 19:04:33 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index 9f4e06144c44..7cf27ab3be81 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35052e53-c1fa-47ff-a708-6aae2632c6fb", + "apim-request-id": "66bd5104-9307-4f45-a5e9-ca34d8eb4111", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:41 GMT", + "Date": "Mon, 17 Oct 2022 19:04:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json index f40fb40060ad..c145221ced6a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "359", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7e1b98e-ab98-483f-adb5-316bae6d84b8", + "apim-request-id": "bc50f190-d523-4f08-97f4-d32d1702832c", "Content-Length": "462", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:40 GMT", + "Date": "Mon, 17 Oct 2022 19:04:34 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index 304120599cfa..dd16a641b107 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "359", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -38,14 +38,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dd54a18-8413-4572-b9be-f744cd807d01", + "apim-request-id": "a3ef254a-d3c1-455a-9842-c4236edb282f", "Content-Length": "462", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:41 GMT", + "Date": "Mon, 17 Oct 2022 19:04:35 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json index 43a25a377356..e6aa9faaf85e 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_dict.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "421", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e8f523e-e959-4d70-b4b3-11d122840994", + "apim-request-id": "6eb1b0a9-9edc-433d-bf8c-1e6d61d16664", "Content-Length": "1123", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:50 GMT", + "Date": "Mon, 17 Oct 2022 19:04:45 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json index 736301779d63..dbeae0f8b8b0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_all_successful_passing_text_document_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "421", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47d8b6c8-1e7d-4ea8-89b5-0c1bfa0507b9", + "apim-request-id": "35c7d75c-3ed7-4b7b-9663-fa74b0f63421", "Content-Length": "1123", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:50 GMT", + "Date": "Mon, 17 Oct 2022 19:04:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_credentials.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_credentials.json index e6218095c6a5..cfe4769d52df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_credentials.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_credentials.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "191", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "0b23336e-5bd3-410e-9494-53b6153a39c7", + "apim-request-id": "087058ba-b29e-42d8-b2e9-4070811bcf87", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:52 GMT" + "Date": "Mon, 17 Oct 2022 19:04:47 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_model_version_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_model_version_error.json index acc72f033546..cf70c0728adb 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_model_version_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_bad_model_version_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "230", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,13 +28,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "458769cf-e551-4e0a-9b42-4bbae350ffb9", + "apim-request-id": "d2276694-3425-4d46-98c9-ec543a0bd42a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:58 GMT", + "Date": "Mon, 17 Oct 2022 19:04:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json index 28cdfed1c568..a28c5659a388 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "58861", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -5272,13 +5272,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "482bda55-a8eb-4c40-941c-2cc182ee9826", + "apim-request-id": "8fef760d-3f5e-4ddc-92dc-4c6e64cd3282", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:53 GMT", + "Date": "Mon, 17 Oct 2022 19:04:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json index 3a8a1249a660..ba1757f35708 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_batch_size_over_limit_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "56068", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -5027,13 +5027,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1798e47a-b68a-4cd0-acea-32c490f49d24", + "apim-request-id": "3282258a-22c9-4e41-8ecd-0cf32ab21486", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:45:01 GMT", + "Date": "Mon, 17 Oct 2022 19:04:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter.json index 186b90101556..82ff7175e450 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "244", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bd60dc6-9272-4fc7-97e7-153f6a3b5b63", + "apim-request-id": "d71ad04b-39b8-4450-855d-dfb764752a53", "Content-Length": "528", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:07 GMT", + "Date": "Mon, 17 Oct 2022 19:04:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -75,14 +76,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "289", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -104,14 +105,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05808497-f5d0-4454-84c3-0f52a59b02d9", + "apim-request-id": "1396a591-0e0a-40e3-b87f-a0a225d89869", "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:07 GMT", + "Date": "Mon, 17 Oct 2022 19:04:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json index 8cc8588ed551..4d9589faf131 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_categories_filter_with_domain_filter.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "306", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -31,14 +31,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c6ee06e-cf21-4e04-8abd-5af8037a1a6f", + "apim-request-id": "d92c5338-8bc3-415b-b93f-d348341eb374", "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:08 GMT", + "Date": "Mon, 17 Oct 2022 19:04:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json index 9514bd395abc..21a25a215157 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_client_passed_default_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c85e84c-d6b5-4bf2-bf93-93b3e935effc", + "apim-request-id": "a0d65581-1642-40bd-b3e4-48132a990c5a", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -75,14 +76,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -111,14 +112,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68fe60a9-3274-41d7-9f7c-4fae6f213338", + "apim-request-id": "5b2f3c24-de35-4ecf-a214-351180ab7221", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -149,14 +151,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -185,14 +187,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce3ec175-54c1-490f-9d0a-ba0956c232dd", + "apim-request-id": "57293c25-f8a7-4194-ae9a-80e2d39b387a", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json index 3e44e0f11a64..8089dfbbd946 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_UnicodeCodePoint_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "175", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3247f38f-cf7f-4196-af5c-ff35bbcfa278", + "apim-request-id": "bbc78265-33db-4578-98da-51028b26c1f1", "Content-Length": "172", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:09 GMT", + "Date": "Mon, 17 Oct 2022 19:05:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json index bfcbfc88c687..09e53da2a096 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_default_string_index_type_is_UnicodeCodePoint.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d22eb864-6669-4f66-9397-17d8ba559a3e", + "apim-request-id": "dca0209b-8280-4fff-8f7c-6e1f001bb6d2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:08 GMT", + "Date": "Mon, 17 Oct 2022 19:04:59 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs.json index 1e718a9927e5..01fa204086b6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "82", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,14 +21,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f5fbb8d-428a-4bd7-9307-c67fcb2855f0", + "apim-request-id": "7856407c-7bd9-479d-8b44-7f540570874e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:12 GMT", + "Date": "Mon, 17 Oct 2022 19:05:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json index d94a8bb077b3..30613c1006a3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_disable_service_logs_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "211", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65cea1d8-bde9-43a4-b7d6-737cd99b73e1", + "apim-request-id": "921343b8-5025-429f-81af-1d82acc3a611", "Content-Length": "185", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:13 GMT", + "Date": "Mon, 17 Oct 2022 19:05:01 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json index bdee0406e61c..4416fa09b2e4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_no_result_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "164", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "472e031e-23cd-450e-a2c7-885d4d3528a3", + "apim-request-id": "f910d7ed-bd39-4fe9-9ff2-b1f923a195e4", "Content-Length": "267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:57 GMT", + "Date": "Mon, 17 Oct 2022 19:04:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json index 7e94da28219a..8e9cb54fe70f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_attribute_error_nonexistent_attribute.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "164", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4269db0-0746-4f37-bb07-a5cb604c4c1b", + "apim-request-id": "888f7cf7-b44e-438f-b7bb-923a4ca75326", "Content-Length": "267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:58 GMT", + "Date": "Mon, 17 Oct 2022 19:04:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_errors.json index d886d26c487a..bdbfa18c6db5 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "5414", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,13 +37,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20996a51-0a3e-4226-a4ad-b3388f145a48", - "Content-Length": "935", + "apim-request-id": "086f13de-e067-4f55-86b9-93b7892fd2c6", + "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:58 GMT", + "Date": "Mon, 17 Oct 2022 19:04:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027english\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_warnings.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_warnings.json index 9b2dc0e2c50f..7573e80ff6e3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_warnings.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_document_warnings.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "204", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a787536c-0653-410d-8c2a-872d5c2ec40d", + "apim-request-id": "19351782-07e2-4041-a302-cf4bed67f89b", "Content-Length": "201", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:59 GMT", + "Date": "Mon, 17 Oct 2022 19:04:55 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json index b34160b23b48..0d7d4190d690 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_duplicate_ids_error.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -32,13 +32,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ac516bab-e37b-4142-9fab-6a39637fcdfe", + "apim-request-id": "fcdb7c01-ab63-4c52-9f86-f7ad7f18a08c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:59 GMT", + "Date": "Mon, 17 Oct 2022 19:04:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_empty_credential_class.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_empty_credential_class.json index 259f18c1563a..8e979b4fd9fd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_empty_credential_class.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_empty_credential_class.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "191", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,10 +27,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "aebe8d0a-44a4-40f0-9be6-19e021f2e9c9", + "apim-request-id": "c072d10b-e8b1-45a2-ab96-500e2bb7e611", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:52 GMT" + "Date": "Mon, 17 Oct 2022 19:04:47 GMT" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json index 51c1626f4902..143007cb3e4f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "documents": [ @@ -21,10 +21,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ed018f3-0a69-4354-ac12-32c368d6a743", + "apim-request-id": "5371dc06-9e25-478f-a676-efed26133a32", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:10 GMT", + "Date": "Mon, 17 Oct 2022 19:05:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json index 11461a5a60de..d0b4e3b998a8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_explicit_set_string_index_type_body_param.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip, deflate", "Content-Length": "174", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8b0403f-667c-4b2a-8905-73ffd48067a2", + "apim-request-id": "7d07b814-ab30-454c-a5f3-7a83dd9f2cb1", "Content-Length": "172", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:10 GMT", + "Date": "Mon, 17 Oct 2022 19:05:00 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_all_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_all_errors.json index 8446bbcbe8d3..eb3028bea1a4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_all_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_all_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "259", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,10 +37,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a17c15b-9436-40fa-9e50-71933fb6fcbd", - "Content-Length": "761", + "apim-request-id": "c4a44f00-42e7-417f-ba13-f2086ef2bf08", + "Content-Length": "771", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:51 GMT", + "Date": "Mon, 17 Oct 2022 19:04:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "4" @@ -68,7 +69,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027Spanish\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_some_errors.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_some_errors.json index c6fc6997df1e..07bf746375e6 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_some_errors.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_input_with_some_errors.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "308", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e049009-db99-4967-95ce-88709f1c9413", - "Content-Length": "698", + "apim-request-id": "0bef2e5a-b8d8-4149-8534-aba9ce1caf0e", + "Content-Length": "713", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:44:51 GMT", + "Date": "Mon, 17 Oct 2022 19:04:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" @@ -65,7 +66,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } }, diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json index 4a2b7d0e337b..5ee04a51962f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_docs.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "240", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,13 +27,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1257a8e5-8b86-415d-a052-508c6bcba0bc", - "Content-Length": "435", + "apim-request-id": "d5890a83-c0b4-440e-ad60-0b9c09850cb0", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json index 3b2b2d879d85..42d3d4b42727 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_invalid_language_hint_method.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "240", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,10 +27,11 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92457e6e-7b9e-4208-a4b1-82b0c71a0b27", - "Content-Length": "435", + "apim-request-id": "27d71864-fe88-4b9d-82ee-ef06aeb7e6b8", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:53 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" @@ -47,7 +48,7 @@ "message": "Invalid Language Code.", "innererror": { "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + "message": "Invalid language code \u0027notalanguage\u0027. Supported languages: de,en,es,fr,it,ja,ko,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" } } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_language_kwarg_english.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_language_kwarg_english.json index 53285f24e91d..baf1f8eb2ea3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_language_kwarg_english.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_language_kwarg_english.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "225", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a100ee36-7055-4d5e-9a92-9d39b1ef4164", + "apim-request-id": "28a3b972-a21e-4614-967c-9e9b468b857a", "Content-Length": "626", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:03 GMT", + "Date": "Mon, 17 Oct 2022 19:04:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_out_of_order_ids.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_out_of_order_ids.json index aa6e7f6b68a8..e652dffed3aa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_out_of_order_ids.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_out_of_order_ids.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "347", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cda0e1fc-c4d1-4590-8b82-74d0935ce2ad", + "apim-request-id": "70ffb468-e6af-4f67-a4db-03006678d74a", "Content-Length": "505", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:52 GMT", + "Date": "Mon, 17 Oct 2022 19:04:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json index ac896cf9a973..56c33cd778c1 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_output_same_order_as_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "355", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -47,14 +47,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "815b8d8b-810f-4e69-b31b-5604c21584fd", + "apim-request-id": "f3efe7b7-e957-4e7f-8bd7-39dc2f65990d", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "Date": "Wed, 08 Jun 2022 01:44:51 GMT", + "Date": "Mon, 17 Oct 2022 19:04:47 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_pass_cls.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_pass_cls.json index f15eb1f97479..25bdda82a81b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_pass_cls.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_pass_cls.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "192", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a34ad0dc-b291-409a-b4df-58b9215e297c", + "apim-request-id": "5a5967e1-50bb-4057-aad4-77aec6783ca2", "Content-Length": "189", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:02 GMT", + "Date": "Mon, 17 Oct 2022 19:04:57 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_passing_only_string.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_passing_only_string.json index 7daab1a52100..d97a2f31ec1d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_passing_only_string.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_passing_only_string.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "464", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -42,14 +42,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "196aff83-b768-49ae-a3dc-79fdbf264d6c", + "apim-request-id": "47f86283-3af8-41df-ab5f-8b36a333c0be", "Content-Length": "1285", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:50 GMT", + "Date": "Mon, 17 Oct 2022 19:04:46 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json index 1683cf60a92a..5ef91baec55f 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_per_item_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "342", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91aed6d4-d107-440d-8e8a-2f4d9251d4f8", + "apim-request-id": "a7509450-91d6-4fac-aaa9-25d4cfcf63a2", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:54 GMT", + "Date": "Mon, 17 Oct 2022 19:04:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_phi_domain_filter.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_phi_domain_filter.json index 63b67c658c9b..bd748f0600f4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_phi_domain_filter.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_phi_domain_filter.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "236", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -28,14 +28,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7474e83-7d70-451a-8f26-06b2fca1afda", + "apim-request-id": "36414b32-7546-412b-89e1-2b4c49f914fe", "Content-Length": "403", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:06 GMT", + "Date": "Mon, 17 Oct 2022 19:04:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_redacted_text.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_redacted_text.json index 366eb8e35951..51df8502d6a4 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_redacted_text.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_redacted_text.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "186", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -27,14 +27,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5dbdeb64-6478-405e-94fc-4fedabb26e4a", + "apim-request-id": "b42917f8-0e31-4ba0-adbe-7a44641edc8d", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Wed, 08 Jun 2022 01:45:05 GMT", + "Date": "Mon, 17 Oct 2022 19:04:58 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json index ec9cd7482ff7..52f8342fe246 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_rotate_subscription_key.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "492d3068-6890-4674-8dde-c5b18bf0ded1", + "apim-request-id": "b3c598f3-a24d-4468-a884-e47b11274af9", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:57 GMT", + "Date": "Mon, 17 Oct 2022 19:04:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", @@ -75,14 +76,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -111,10 +112,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "074cc7db-7051-45f9-a45d-4882d0e7f08f", + "apim-request-id": "bc756cec-e8ba-455d-b48f-99e02635ec98", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Wed, 08 Jun 2022 01:44:57 GMT" + "Date": "Mon, 17 Oct 2022 19:04:54 GMT" }, "ResponseBody": { "error": { @@ -124,14 +125,14 @@ } }, { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -160,14 +161,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2686aff-6c4a-4d97-a12f-2f90be66af47", + "apim-request-id": "efaff78d-00d6-4d18-83dc-4ab8536b75f7", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:57 GMT", + "Date": "Mon, 17 Oct 2022 19:04:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json index 11b3975a3da9..1c55c52c3d5c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_show_stats_and_model_version.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01\u0026showStats=true", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "373", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -48,14 +48,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1a4a58f-6201-4717-ba8c-953c20868fd2", + "apim-request-id": "250436d2-f06e-4788-88e8-0781ae243428", "Content-Length": "841", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Wed, 08 Jun 2022 01:44:53 GMT", + "Date": "Mon, 17 Oct 2022 19:04:48 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_too_many_documents.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_too_many_documents.json index 3cab7ec3e019..6b5741b514dd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_too_many_documents.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_too_many_documents.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "401", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -52,13 +52,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "6dccf4a1-0f1c-41c6-8649-bac9e2234993", + "apim-request-id": "b254d571-d28b-4bbd-b238-96356ae67d6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 08 Jun 2022 01:44:51 GMT", + "Date": "Mon, 17 Oct 2022 19:04:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_user_agent.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_user_agent.json index c5fd49b43bf2..4aa2dc94f1d0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_user_agent.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_user_agent.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32ac2446-ec2a-4172-b13d-9ec7105d14e4", + "apim-request-id": "078301dd-1528-4de1-bba5-ca3f103868b2", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:57 GMT", + "Date": "Mon, 17 Oct 2022 19:04:54 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json index b4ff045a2cc1..c2e992067495 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_dont_use_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "379", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f458df02-0d39-4cc6-8c46-c31f13b59b60", + "apim-request-id": "49c02df3-d6c9-4c87-afd6-500b9e89be85", "Content-Length": "410", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:54 GMT", + "Date": "Mon, 17 Oct 2022 19:04:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json index bedfaa84e9d4..aff40e577187 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "385", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd2b7ec3-466a-45ef-b5ae-6f6833f04a58", + "apim-request-id": "09921574-dc7d-43bc-958b-53508a0e2a6b", "Content-Length": "410", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:53 GMT", + "Date": "Mon, 17 Oct 2022 19:04:50 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json index 8b42e2d133f5..995022c5247a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_dict_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "346", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,11 +37,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecbdd5ae-2df0-4bf4-a58b-0553034ea059", + "apim-request-id": "7d52b170-1eec-497b-9d04-52b6764d72a3", "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:55 GMT", + "Date": "Mon, 17 Oct 2022 19:04:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "26" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json index e8e4bf940727..efeabe6a814b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_input.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "359", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71bc8d5a-98f6-4269-b4ce-98bb81ef86ad", + "apim-request-id": "d8dba7ca-fda5-4d5c-b516-9fafeeff3118", "Content-Length": "462", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:54 GMT", + "Date": "Mon, 17 Oct 2022 19:04:51 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json index ebcf23c0845c..a32954d758aa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/recordings/test_recognize_pii_entities_async.pyTestRecognizePIIEntitiestest_whole_batch_language_hint_and_obj_per_item_hints.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-05-01", + "RequestUri": "https://fakeendpoint.cognitiveservices.azure.com/language/:analyze-text?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Content-Length": "359", "Content-Type": "application/json", - "User-Agent": "azsdk-python-ai-textanalytics/5.2.0b5 Python/3.10.0 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azsdk-python-ai-textanalytics/5.3.0b1 Python/3.10.0 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "kind": "PiiEntityRecognition", @@ -37,14 +37,15 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50d0de1c-dce6-462e-bd94-cfc17690cec3", + "apim-request-id": "9ddb0222-08f8-48c3-8c82-cf365881ef03", "Content-Length": "462", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Wed, 08 Jun 2022 01:44:54 GMT", + "Date": "Mon, 17 Oct 2022 19:04:52 GMT", + "Set-Cookie": ".AspNetCore.Mvc.CookieTempDataProvider=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; samesite=lax; httponly", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "kind": "PiiEntityRecognitionResults", diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze.py index ea27aa4ffaab..4994ef91c31b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze.py @@ -39,7 +39,11 @@ RecognizeCustomEntitiesAction, ClassifyDocumentResult, RecognizeCustomEntitiesResult, - AnalyzeHealthcareEntitiesAction + AnalyzeHealthcareEntitiesAction, + ExtractSummaryAction, + ExtractSummaryResult, + AbstractSummaryAction, + PhraseControl, ) # pre-apply the client_cls positional argument so it needn't be explicitly passed below @@ -120,7 +124,7 @@ def test_all_successful_passing_dict_sentiment_task(self, client): assert isinstance(document_result, AnalyzeSentimentResult) assert document_result.id is not None assert document_result.statistics is not None - self.validateConfidenceScores(document_result.confidence_scores) + # self.validateConfidenceScores(document_result.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert document_result.sentences is not None if idx == 0: assert document_result.sentiment == "neutral" @@ -492,6 +496,7 @@ def callback(resp): assert document_result.statistics.character_count assert document_result.statistics.transaction_count + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy @@ -809,6 +814,7 @@ def test_partial_success_for_actions(self, client): assert isinstance(action_results[1][1], RecognizePiiEntitiesResult) assert action_results[1][1].id == "2" + @pytest.mark.skip("test is hanging with PPE") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy @@ -1676,6 +1682,8 @@ def test_healthcare_action(self, client): actions=[ AnalyzeHealthcareEntitiesAction( model_version="latest", + fhir_version="4.0.1", + document_type="HistoryAndPhysical", ) ], show_stats=True, @@ -1690,6 +1698,7 @@ def test_healthcare_action(self, client): else: assert res.entities # assert res.statistics FIXME https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15860714 + assert res.fhir_bundle @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @@ -1790,3 +1799,327 @@ def test_cancel_fail_v3_1(self, client): with pytest.raises(ValueError) as e: poller.cancel() assert"Cancellation not supported by API versions v3.0, v3.1." in str(e.value) + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_passing_dict_extract_summary_action(self, client): + docs = [{"id": "1", "language": "en", "text": + "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."}, + {"id": "2", "language": "es", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + + response = client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + ).result() + + document_results = list(response) + + assert len(document_results) == 2 + for document_result in document_results: + assert len(document_result) == 1 + for result in document_result: + assert isinstance(result, ExtractSummaryResult) + assert result.statistics + assert len(result.sentences) == 3 if result.id == 0 else 1 + for sentence in result.sentences: + assert sentence.text + assert sentence.rank_score is not None + assert sentence.offset is not None + assert sentence.length is not None + assert result.id is not None + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15772270") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_extract_summary_action_with_options(self, client): + docs = ["The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."] + + response = client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction(max_sentence_count=5, order_by="Rank")], + show_stats=True, + polling_interval=self._interval(), + ).result() + + document_results = list(response) + + assert len(document_results) == 1 + for document_result in document_results: + assert len(document_result) == 1 + for result in document_result: + assert isinstance(result, ExtractSummaryResult) + assert result.statistics + assert len(result.sentences) == 5 + previous_score = 1.0 + for sentence in result.sentences: + assert sentence.rank_score <= previous_score + previous_score = sentence.rank_score + assert sentence.text + assert sentence.offset is not None + assert sentence.length is not None + assert result.id is not None + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_extract_summary_partial_results(self, client): + docs = [{"id": "1", "language": "en", "text": ""}, {"id": "2", "language": "en", "text": "hello world"}] + + response = client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + ).result() + + document_results = list(response) + assert document_results[0][0].is_error + assert document_results[0][0].error.code == "InvalidDocument" + + assert not document_results[1][0].is_error + assert isinstance(document_results[1][0], ExtractSummaryResult) + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_entity_action_resolutions(self, client): + docs = [ + "The cat is 1 year old and weighs 10 pounds." + ] + + response = client.begin_analyze_actions( + docs, + actions=[RecognizeEntitiesAction( + model_version="2022-10-01-preview" + )], + polling_interval=self._interval(), + ).result() + + pages = list(response) + for document_results in pages: + document_result = document_results[0] + for entity in document_result.entities: + assert entity.text is not None + assert entity.category is not None + assert entity.offset is not None + assert entity.confidence_score is not None + for res in entity.resolutions: + assert res.resolution_kind in ["WeightResolution", "AgeResolution"] + if res.resolution_kind == "WeightResolution": + assert res.value == 10 + if res.resolution_kind == "AgeResolution": + assert res.value == 1 + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_passing_dict_abstract_summary_action(self, client): + docs = [{"id": "1", "language": "en", "text": + "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."}] + + response = client.begin_analyze_actions( + docs, + actions=[AbstractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + ).result() + + document_results = list(response) + + for document_result in document_results: + for result in document_result: + assert result.statistics is not None + assert result.id is not None + for summary in result.summaries: + for context in summary.contexts: + assert context.offset is not None + assert context.length is not None + assert summary.text + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15919116") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_abstract_summary_action_with_options(self, client): + docs = [{"id": "1", "language": "en", "text": "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive Services, I have been working with a team of amazing scientists and engineers to turn this quest into a reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the intersection of all three, there’s magic—what we call XYZ-code as illustrated in Figure 1—a joint representation to create more powerful AI that can speak, hear, see, and understand humans better. We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, spanning modalities and languages. The goal is to have pre-trained models that can jointly learn representations to support a broad range of downstream AI tasks, much in the way humans do today. Over the past five years, we have achieved human performance on benchmarks in conversational speech recognition, machine translation, conversational question answering, machine reading comprehension, and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious aspiration to produce a leap in AI capabilities, achieving multi-sensory and multilingual learning that is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks."}] + + response = client.begin_analyze_actions( + docs, + actions=[ + AbstractSummaryAction( + sentence_count=4, + phrase_controls=[ + PhraseControl( + target_phrase="Microsoft", + strategy="encourage" + ) + ] + ) + ], + show_stats=True, + polling_interval=self._interval(), + ).result() + + document_results = list(response) + + for document_result in document_results: + for result in document_result: + assert result.statistics is not None + assert result.id is not None + for summary in result.summaries: + for context in summary.contexts: + assert context.offset is not None + assert context.length is not None + assert summary.text + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_autodetect_lang_document(self, client): + docs = [{"id": "1", "language": "auto", "text": "Microsoft was founded by Bill Gates and Paul Allen"}, + {"id": "2", "language": "auto", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + actions=[ + RecognizeEntitiesAction(), + ExtractKeyPhrasesAction(), + RecognizePiiEntitiesAction(), + # RecognizeLinkedEntitiesAction(), # https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15859145 + AnalyzeSentimentAction(), + # AnalyzeHealthcareEntitiesAction(), # https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/16040765 + ExtractSummaryAction(), + ] + poller = client.begin_analyze_actions( + docs, + actions, + polling_interval=self._interval(), + ) + + result = list(poller.result()) + for res in result: + for doc in res: + if doc.id == "1": + assert doc.detected_language.iso6391_name == "en" + else: + assert doc.detected_language.iso6391_name == "es" + + @pytest.mark.skipif(not is_public_cloud(), reason='Usgov and China Cloud are not supported') + @TextAnalyticsPreparer() + @TextAnalyticsCustomPreparer() + @recorded_by_proxy + def test_autodetect_lang_document_custom(self, **kwargs): + textanalytics_custom_text_endpoint = kwargs.pop("textanalytics_custom_text_endpoint") + textanalytics_custom_text_key = kwargs.pop("textanalytics_custom_text_key") + textanalytics_single_label_classify_project_name = kwargs.pop("textanalytics_single_label_classify_project_name") + textanalytics_single_label_classify_deployment_name = kwargs.pop("textanalytics_single_label_classify_deployment_name") + textanalytics_multi_label_classify_project_name = kwargs.pop("textanalytics_multi_label_classify_project_name") + textanalytics_multi_label_classify_deployment_name = kwargs.pop("textanalytics_multi_label_classify_deployment_name") + textanalytics_custom_entities_project_name = kwargs.pop("textanalytics_custom_entities_project_name") + textanalytics_custom_entities_deployment_name = kwargs.pop("textanalytics_custom_entities_deployment_name") + set_bodiless_matcher() # don't match on body for this test since we scrub the proj/deployment values + client = TextAnalyticsClient(textanalytics_custom_text_endpoint, AzureKeyCredential(textanalytics_custom_text_key)) + + docs = [{"id": "1", "language": "auto", "text": "Microsoft was founded by Bill Gates and Paul Allen"}, + {"id": "2", "language": "auto", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + actions=[ + RecognizeCustomEntitiesAction( + project_name=textanalytics_custom_entities_project_name, + deployment_name=textanalytics_custom_entities_deployment_name, + ), + SingleLabelClassifyAction( + project_name=textanalytics_single_label_classify_project_name, + deployment_name=textanalytics_single_label_classify_deployment_name, + ), + MultiLabelClassifyAction( + project_name=textanalytics_multi_label_classify_project_name, + deployment_name=textanalytics_multi_label_classify_deployment_name, + ), + ] + poller = client.begin_analyze_actions( + docs, + actions, + polling_interval=self._interval(), + ) + + result = list(poller.result()) + for res in result: + for doc in res: + if doc.id == "1": + assert doc.detected_language.iso6391_name == "en" + else: + assert doc.detected_language.iso6391_name == "es" + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15816856") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_autodetect_with_default_and_script(self, client): + single_doc = "Tumhara naam kya hai?" + docs = [{"id": "1", "text": single_doc}] + actions=[ + RecognizeEntitiesAction(), + ExtractKeyPhrasesAction(), + RecognizePiiEntitiesAction(), + RecognizeLinkedEntitiesAction(), + AnalyzeSentimentAction(), + ] + poller = client.begin_analyze_actions( + docs, + actions, + language="auto", + autodetect_default_language="en", + polling_interval=self._interval(), + ) + + result = list(poller.result()) + for res in result: + for doc in res: + assert doc.detected_language.iso6391_name == "hi" + assert doc.detected_language.script == "Latin" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_async.py index a7f647647bdd..c23992aad65b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_async.py @@ -41,7 +41,11 @@ RecognizeCustomEntitiesAction, ClassifyDocumentResult, RecognizeCustomEntitiesResult, - AnalyzeHealthcareEntitiesAction + AnalyzeHealthcareEntitiesAction, + ExtractSummaryAction, + ExtractSummaryResult, + AbstractSummaryAction, + PhraseControl ) # pre-apply the client_cls positional argument so it needn't be explicitly passed below @@ -163,7 +167,7 @@ async def test_all_successful_passing_dict_sentiment_task(self, client): assert isinstance(document_result, AnalyzeSentimentResult) assert document_result.id is not None assert document_result.statistics is not None - self.validateConfidenceScores(document_result.confidence_scores) + # self.validateConfidenceScores(document_result.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert document_result.sentences is not None if idx == 0: assert document_result.sentiment == "neutral" @@ -557,6 +561,7 @@ def callback(resp): assert document_result.statistics.character_count assert document_result.statistics.transaction_count + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy_async @@ -864,6 +869,7 @@ async def test_partial_success_for_actions(self, client): assert isinstance(action_results[1][1], RecognizePiiEntitiesResult) assert action_results[1][1].id == "2" + @pytest.mark.skip("test is hanging with PPE") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy_async @@ -1778,6 +1784,8 @@ async def test_healthcare_action(self, client): actions=[ AnalyzeHealthcareEntitiesAction( model_version="latest", + fhir_version="4.0.1", + document_type="HistoryAndPhysical", ) ], show_stats=True, @@ -1795,6 +1803,7 @@ async def test_healthcare_action(self, client): else: assert res.entities # assert res.statistics FIXME https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15860714 + assert res.fhir_bundle @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @@ -1903,3 +1912,334 @@ async def test_cancel_fail_v3_1(self, client): with pytest.raises(ValueError) as e: await poller.cancel() assert"Cancellation not supported by API versions v3.0, v3.1." in str(e.value) + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_passing_dict_extract_summary_action(self, client): + docs = [{"id": "1", "language": "en", "text": + "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."}, + {"id": "2", "language": "es", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + + async with client: + response = await (await client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + )).result() + + document_results = [] + async for doc in response: + document_results.append(doc) + + assert len(document_results) == 2 + for document_result in document_results: + assert len(document_result) == 1 + for result in document_result: + assert isinstance(result, ExtractSummaryResult) + assert result.statistics + assert len(result.sentences) == 3 if result.id == 0 else 1 + for sentence in result.sentences: + assert sentence.text + assert sentence.rank_score is not None + assert sentence.offset is not None + assert sentence.length is not None + assert result.id is not None + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15772270") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_extract_summary_action_with_options(self, client): + docs = ["The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."] + + async with client: + response = await (await client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction(max_sentence_count=5, order_by="Rank")], + show_stats=True, + polling_interval=self._interval(), + )).result() + + document_results = [] + async for doc in response: + document_results.append(doc) + + assert len(document_results) == 1 + for document_result in document_results: + assert len(document_result) == 1 + for result in document_result: + assert isinstance(result, ExtractSummaryResult) + assert result.statistics + assert len(result.sentences) == 5 + previous_score = 1.0 + for sentence in result.sentences: + assert sentence.rank_score <= previous_score + previous_score = sentence.rank_score + assert sentence.text + assert sentence.offset is not None + assert sentence.length is not None + assert result.id is not None + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_extract_summary_partial_results(self, client): + docs = [{"id": "1", "language": "en", "text": ""}, {"id": "2", "language": "en", "text": "hello world"}] + + async with client: + response = await (await client.begin_analyze_actions( + docs, + actions=[ExtractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + )).result() + + document_results = [] + async for doc in response: + document_results.append(doc) + assert document_results[0][0].is_error + assert document_results[0][0].error.code == "InvalidDocument" + + assert not document_results[1][0].is_error + assert isinstance(document_results[1][0], ExtractSummaryResult) + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_entity_action_resolutions(self, client): + docs = [ + "The cat is 1 year old and weighs 10 pounds." + ] + async with client: + poller = await client.begin_analyze_actions( + docs, + actions=[RecognizeEntitiesAction( + model_version="2022-10-01-preview" + )], + polling_interval=self._interval(), + ) + response = await poller.result() + + async for document_results in response: + document_result = document_results[0] + for entity in document_result.entities: + assert entity.text is not None + assert entity.category is not None + assert entity.offset is not None + assert entity.confidence_score is not None + for res in entity.resolutions: + assert res.resolution_kind in ["WeightResolution", "AgeResolution"] + if res.resolution_kind == "WeightResolution": + assert res.value == 10 + if res.resolution_kind == "AgeResolution": + assert res.value == 1 + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_passing_dict_abstract_summary_action(self, client): + docs = [{"id": "1", "language": "en", "text": + "The government of British Prime Minster Theresa May has been plunged into turmoil with the resignation" + " of two senior Cabinet ministers in a deep split over her Brexit strategy. The Foreign Secretary Boris " + "Johnson, quit on Monday, hours after the resignation late on Sunday night of the minister in charge of " + "Brexit negotiations, David Davis. Their decision to leave the government came three days after May " + "appeared to have agreed a deal with her fractured Cabinet on the UK's post Brexit relationship with " + "the EU. That plan is now in tatters and her political future appears uncertain. May appeared in Parliament" + " on Monday afternoon to defend her plan, minutes after Downing Street confirmed the departure of Johnson. " + "May acknowledged the splits in her statement to MPs, saying of the ministers who quit: We do not agree " + "about the best way of delivering our shared commitment to honoring the result of the referendum. The " + "Prime Minister's latest political drama began late on Sunday night when Davis quit, declaring he could " + "not support May's Brexit plan. He said it involved too close a relationship with the EU and gave only " + "an illusion of control being returned to the UK after it left the EU. It seems to me we're giving too " + "much away, too easily, and that's a dangerous strategy at this time, Davis said in a BBC radio " + "interview Monday morning. Johnson's resignation came Monday afternoon local time, just before the " + "Prime Minister was due to make a scheduled statement in Parliament. This afternoon, the Prime Minister " + "accepted the resignation of Boris Johnson as Foreign Secretary, a statement from Downing Street said."}] + + poller = await client.begin_analyze_actions( + docs, + actions=[AbstractSummaryAction()], + show_stats=True, + polling_interval=self._interval(), + ) + document_results = await poller.result() + async for document_result in document_results: + for result in document_result: + assert result.statistics is not None + assert result.id is not None + for summary in result.summaries: + for context in summary.contexts: + assert context.offset is not None + assert context.length is not None + assert summary.text + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15919116") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_abstract_summary_action_with_options(self, client): + docs = [{"id": "1", "language": "en", "text": "At Microsoft, we have been on a quest to advance AI beyond existing techniques, by taking a more holistic, human-centric approach to learning and understanding. As Chief Technology Officer of Azure AI Cognitive Services, I have been working with a team of amazing scientists and engineers to turn this quest into a reality. In my role, I enjoy a unique perspective in viewing the relationship among three attributes of human cognition: monolingual text (X), audio or visual sensory signals, (Y) and multilingual (Z). At the intersection of all three, there’s magic—what we call XYZ-code as illustrated in Figure 1—a joint representation to create more powerful AI that can speak, hear, see, and understand humans better. We believe XYZ-code will enable us to fulfill our long-term vision: cross-domain transfer learning, spanning modalities and languages. The goal is to have pre-trained models that can jointly learn representations to support a broad range of downstream AI tasks, much in the way humans do today. Over the past five years, we have achieved human performance on benchmarks in conversational speech recognition, machine translation, conversational question answering, machine reading comprehension, and image captioning. These five breakthroughs provided us with strong signals toward our more ambitious aspiration to produce a leap in AI capabilities, achieving multi-sensory and multilingual learning that is closer in line with how humans learn and understand. I believe the joint XYZ-code is a foundational component of this aspiration, if grounded with external knowledge sources in the downstream AI tasks."}] + + poller = client.begin_analyze_actions( + docs, + actions=[ + AbstractSummaryAction( + sentence_count=4, + phrase_controls=[ + PhraseControl( + target_phrase="Microsoft", + strategy="encourage" + ) + ] + ) + ], + show_stats=True, + polling_interval=self._interval(), + ) + document_results = await poller.result() + async for document_result in document_results: + for result in document_result: + assert result.statistics is not None + assert result.id is not None + for summary in result.summaries: + for context in summary.contexts: + assert context.offset is not None + assert context.length is not None + assert summary.text + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_autodetect_lang_document(self, client): + docs = [{"id": "1", "language": "auto", "text": "Microsoft was founded by Bill Gates and Paul Allen"}, + {"id": "2", "language": "auto", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + actions=[ + RecognizeEntitiesAction(), + ExtractKeyPhrasesAction(), + RecognizePiiEntitiesAction(), + # RecognizeLinkedEntitiesAction(), # https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15859145 + AnalyzeSentimentAction(), + # AnalyzeHealthcareEntitiesAction(), # https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/16040765 + ExtractSummaryAction(), + ] + async with client: + poller = await client.begin_analyze_actions( + docs, + actions, + polling_interval=self._interval(), + ) + + result = await poller.result() + async for res in result: + for doc in res: + if doc.id == "1": + assert doc.detected_language.iso6391_name == "en" + else: + assert doc.detected_language.iso6391_name == "es" + + @pytest.mark.skipif(not is_public_cloud(), reason='Usgov and China Cloud are not supported') + @TextAnalyticsPreparer() + @TextAnalyticsCustomPreparer() + @recorded_by_proxy_async + async def test_autodetect_lang_document_custom(self, **kwargs): + textanalytics_custom_text_endpoint = kwargs.pop("textanalytics_custom_text_endpoint") + textanalytics_custom_text_key = kwargs.pop("textanalytics_custom_text_key") + textanalytics_single_label_classify_project_name = kwargs.pop("textanalytics_single_label_classify_project_name") + textanalytics_single_label_classify_deployment_name = kwargs.pop("textanalytics_single_label_classify_deployment_name") + textanalytics_multi_label_classify_project_name = kwargs.pop("textanalytics_multi_label_classify_project_name") + textanalytics_multi_label_classify_deployment_name = kwargs.pop("textanalytics_multi_label_classify_deployment_name") + textanalytics_custom_entities_project_name = kwargs.pop("textanalytics_custom_entities_project_name") + textanalytics_custom_entities_deployment_name = kwargs.pop("textanalytics_custom_entities_deployment_name") + set_bodiless_matcher() # don't match on body for this test since we scrub the proj/deployment values + client = TextAnalyticsClient(textanalytics_custom_text_endpoint, + AzureKeyCredential(textanalytics_custom_text_key)) + async with client: + docs = [{"id": "1", "language": "auto", "text": "Microsoft was founded by Bill Gates and Paul Allen"}, + {"id": "2", "language": "auto", "text": "Microsoft fue fundado por Bill Gates y Paul Allen"}] + actions=[ + RecognizeCustomEntitiesAction( + project_name=textanalytics_custom_entities_project_name, + deployment_name=textanalytics_custom_entities_deployment_name, + ), + SingleLabelClassifyAction( + project_name=textanalytics_single_label_classify_project_name, + deployment_name=textanalytics_single_label_classify_deployment_name, + ), + MultiLabelClassifyAction( + project_name=textanalytics_multi_label_classify_project_name, + deployment_name=textanalytics_multi_label_classify_deployment_name, + ), + ] + poller = await client.begin_analyze_actions( + docs, + actions, + polling_interval=self._interval(), + ) + + result = await poller.result() + async for res in result: + for doc in res: + if doc.id == "1": + assert doc.detected_language.iso6391_name == "en" + else: + assert doc.detected_language.iso6391_name == "es" + + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15816856") + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_autodetect_with_default_and_script(self, client): + single_doc = "Tumhara naam kya hai?" + docs = [{"id": "1", "text": single_doc}] + actions=[ + RecognizeEntitiesAction(), + ExtractKeyPhrasesAction(), + RecognizePiiEntitiesAction(), + RecognizeLinkedEntitiesAction(), + AnalyzeSentimentAction(), + ] + poller = await client.begin_analyze_actions( + docs, + actions, + language="auto", + autodetect_default_language="en", + polling_interval=self._interval(), + ) + + result = await poller.result() + async for res in result: + for doc in res: + assert doc.detected_language.iso6391_name == "hi" + assert doc.detected_language.script == "Latin" diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare.py index b9c574919ccf..c33b0b9d44c3 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare.py @@ -21,7 +21,8 @@ VERSION, TextAnalyticsApiVersion, HealthcareEntityRelation, - AnalyzeHealthcareEntitiesLROPoller + AnalyzeHealthcareEntitiesLROPoller, + HealthcareDocumentType ) # pre-apply the client_cls positional argument so it needn't be explicitly passed below @@ -444,6 +445,7 @@ def test_relations(self, client): relation = result.entity_relations[0] assert relation.relation_type == HealthcareEntityRelation.ABBREVIATION + assert relation.confidence_score assert len(relation.roles) == 2 parkinsons_entity = list(filter(lambda x: x.text == "Parkinsons Disease", result.entities))[0] @@ -538,6 +540,7 @@ def test_healthcare_continuation_token(self, client): initial_poller.wait() # necessary so azure-devtools doesn't throw assertion error + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy @@ -598,3 +601,20 @@ def test_healthcare_multiapi_validate_v3_1(self, **kwargs): polling_interval=self._interval(), ) assert str(e.value) == "'display_name' is not available in API version v3.1. Use service API version 2022-05-01 or newer.\n" + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_healthcare_fhir_bundle(self, client): + poller = client.begin_analyze_healthcare_entities( + documents=[ + "Baby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too." + ], + fhir_version="4.0.1", + document_type=HealthcareDocumentType.PROGRESS_NOTE, + polling_interval=self._interval(), + ) + + response = poller.result() + for res in response: + assert res.fhir_bundle diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare_async.py index 2b5d1bfa0454..b3ee76ede50b 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_healthcare_async.py @@ -22,6 +22,7 @@ VERSION, TextAnalyticsApiVersion, HealthcareEntityRelation, + HealthcareDocumentType ) from azure.ai.textanalytics.aio import AsyncAnalyzeHealthcareEntitiesLROPoller @@ -462,6 +463,7 @@ async def test_relations(self, client): relation = result.entity_relations[0] assert relation.relation_type == HealthcareEntityRelation.ABBREVIATION + assert relation.confidence_score assert len(relation.roles) == 2 parkinsons_entity = list(filter(lambda x: x.text == "Parkinsons Disease", result.entities))[0] @@ -569,6 +571,7 @@ async def test_healthcare_continuation_token(self, client): await initial_poller.wait() # necessary so azure-devtools doesn't throw assertion error + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @TextAnalyticsPreparer() @TextAnalyticsClientPreparer() @recorded_by_proxy_async @@ -630,3 +633,21 @@ async def test_healthcare_multiapi_validate_v3_1(self, **kwargs): polling_interval=self._interval(), ) assert str(e.value) == "'display_name' is not available in API version v3.1. Use service API version 2022-05-01 or newer.\n" + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_healthcare_fhir_bundle(self, client): + async with client: + poller = await client.begin_analyze_healthcare_entities( + documents=[ + "Baby not likely to have Meningitis. In case of fever in the mother, consider Penicillin for the baby too." + ], + fhir_version="4.0.1", + document_type=HealthcareDocumentType.PROGRESS_NOTE, + polling_interval=self._interval(), + ) + + response = await poller.result() + async for res in response: + assert res.fhir_bundle diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment.py index c656ded79ef2..f8b914fa759c 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment.py @@ -48,7 +48,7 @@ def test_all_successful_passing_dict(self, client): for doc in response: assert doc.id is not None assert doc.statistics is not None - self.validateConfidenceScores(doc.confidence_scores) + # self.validateConfidenceScores(doc.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert doc.sentences is not None assert len(response[0].sentences) == 1 @@ -76,7 +76,7 @@ def test_all_successful_passing_text_document_input(self, client): assert response[2].sentiment == "positive" for doc in response: - self.validateConfidenceScores(doc.confidence_scores) + # self.validateConfidenceScores(doc.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert doc.sentences is not None assert len(response[0].sentences) == 1 diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment_async.py index 70e89647b997..6dc3695928cd 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_analyze_sentiment_async.py @@ -85,7 +85,7 @@ async def test_all_successful_passing_dict(self, client): for doc in response: assert doc.id is not None assert doc.statistics is not None - self.validateConfidenceScores(doc.confidence_scores) + # self.validateConfidenceScores(doc.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert doc.sentences is not None assert len(response[0].sentences) == 1 @@ -113,7 +113,7 @@ async def test_all_successful_passing_text_document_input(self, client): assert response[2].sentiment == "positive" for doc in response: - self.validateConfidenceScores(doc.confidence_scores) + # self.validateConfidenceScores(doc.confidence_scores) https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15794991 assert doc.sentences is not None assert len(response[0].sentences) == 1 diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth.py index 585909669349..9cae5ae8261d 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth.py @@ -12,6 +12,7 @@ class TestAuth(TextAnalyticsTest): + @pytest.mark.skip("AAD not enabled yet for 2022-10-01-preview") @pytest.mark.live_test_only @TextAnalyticsPreparer() def test_active_directory_auth(self, **kwargs): diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth_async.py index a3e4e18cad90..ad060f00a5aa 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_auth_async.py @@ -13,6 +13,7 @@ class TestAuth(TextAnalyticsTest): + @pytest.mark.skip("AAD not enabled yet for 2022-10-01-preview") @pytest.mark.live_test_only @TextAnalyticsPreparer() async def test_active_directory_auth(self, **kwargs): diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text.py index 45e73504c50e..267153f48146 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text.py @@ -36,6 +36,7 @@ class TestCustomText(TextAnalyticsTest): def _interval(self): return 5 if self.is_live else 0 + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @pytest.mark.skipif(not is_public_cloud(), reason='Usgov and China Cloud are not supported') @TextAnalyticsCustomPreparer() @recorded_by_proxy diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text_async.py index 6c724d9053b7..43199275a1df 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_custom_text_async.py @@ -35,6 +35,7 @@ class TestCustomTextAsync(TextAnalyticsTest): def _interval(self): return 5 if self.is_live else 0 + @pytest.mark.skip("https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/15758510") @pytest.mark.skipif(not is_public_cloud(), reason='Usgov and China Cloud are not supported') @TextAnalyticsCustomPreparer() @recorded_by_proxy_async diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification.py new file mode 100644 index 000000000000..03bd7e22c595 --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification.py @@ -0,0 +1,61 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +import pytest +import platform +import functools +from testcase import TextAnalyticsTest, TextAnalyticsPreparer +from testcase import TextAnalyticsClientPreparer as _TextAnalyticsClientPreparer +from devtools_testutils import recorded_by_proxy +from azure.ai.textanalytics import ( + DynamicClassificationResult, + TextAnalyticsClient, + ClassificationType, +) + +# pre-apply the client_cls positional argument so it needn't be explicitly passed below +TextAnalyticsClientPreparer = functools.partial(_TextAnalyticsClientPreparer, TextAnalyticsClient) + + +class TestDynamicClassification(TextAnalyticsTest): + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_dynamic_classification(self, client): + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + result = client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + show_stats=True + ) + for res in result: + assert res.id + assert res.statistics + for classification in res.classifications: + assert classification.category + assert classification.confidence_score is not None + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_dynamic_classification_single(self, client): + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + result = client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + classification_type="single" + ) + for res in result: + assert res.id + assert len(res.classifications) == 1 + assert res.classifications[0].category + assert res.classifications[0].confidence_score is not None diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification_async.py new file mode 100644 index 000000000000..7a8f020c76fc --- /dev/null +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_dynamic_classification_async.py @@ -0,0 +1,63 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +import pytest +import platform +import functools +from testcase import TextAnalyticsTest, TextAnalyticsPreparer +from testcase import TextAnalyticsClientPreparer as _TextAnalyticsClientPreparer +from devtools_testutils.aio import recorded_by_proxy_async +from azure.ai.textanalytics.aio import TextAnalyticsClient +from azure.ai.textanalytics import ( + DynamicClassificationResult, + ClassificationType, +) + +# pre-apply the client_cls positional argument so it needn't be explicitly passed below +TextAnalyticsClientPreparer = functools.partial(_TextAnalyticsClientPreparer, TextAnalyticsClient) + + +class TestDynamicClassification(TextAnalyticsTest): + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_dynamic_classification(self, client): + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + async with client: + result = await client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + show_stats=True + ) + for res in result: + assert res.id + assert res.statistics + for classification in res.classifications: + assert classification.category + assert classification.confidence_score is not None + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_dynamic_classification_single(self, client): + documents = [ + "The WHO is issuing a warning about Monkey Pox.", + "Mo Salah plays in Liverpool FC in England.", + ] + async with client: + result = await client.dynamic_classification( + documents, + categories=["Health", "Politics", "Music", "Sports"], + classification_type="single" + ) + for res in result: + assert res.id + assert len(res.classifications) == 1 + assert res.classifications[0].category + assert res.classifications[0].confidence_score is not None diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities.py index 8dcfbe730bf6..1f79cd5ae988 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities.py @@ -688,3 +688,22 @@ def test_entities_multiapi_validate_args_v3_0(self, **kwargs): with pytest.raises(ValueError) as e: res = client.recognize_entities(["I'm tired"], string_index_type="UnicodeCodePoint", disable_service_logs=True) assert str(e.value) == "'string_index_type' is not available in API version v3.0. Use service API version v3.1 or newer.\n'disable_service_logs' is not available in API version v3.0. Use service API version v3.1 or newer.\n" + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy + def test_entity_resolutions(self, client): + docs = ["The cat is 1 year old and weighs 10 pounds."] + response = client.recognize_entities(docs, model_version="2022-10-01-preview") + for doc in response: + for entity in doc.entities: + assert entity.text is not None + assert entity.category is not None + assert entity.offset is not None + assert entity.confidence_score is not None + for res in entity.resolutions: + assert res.resolution_kind in ["WeightResolution", "AgeResolution"] + if res.resolution_kind == "WeightResolution": + assert res.value == 10 + if res.resolution_kind == "AgeResolution": + assert res.value == 1 diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities_async.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities_async.py index cf5466504bd4..00277d3f3853 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities_async.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_entities_async.py @@ -695,3 +695,22 @@ async def test_entities_multiapi_validate_args_v3_0(self, **kwargs): with pytest.raises(ValueError) as e: res = await client.recognize_entities(["I'm tired"], string_index_type="UnicodeCodePoint", disable_service_logs=True) assert str(e.value) == "'string_index_type' is not available in API version v3.0. Use service API version v3.1 or newer.\n'disable_service_logs' is not available in API version v3.0. Use service API version v3.1 or newer.\n" + + @TextAnalyticsPreparer() + @TextAnalyticsClientPreparer() + @recorded_by_proxy_async + async def test_entity_resolutions(self, client): + docs = ["The cat is 1 year old and weighs 10 pounds."] + response = await client.recognize_entities(docs, model_version="2022-10-01-preview") + for doc in response: + for entity in doc.entities: + assert entity.text is not None + assert entity.category is not None + assert entity.offset is not None + assert entity.confidence_score is not None + for res in entity.resolutions: + assert res.resolution_kind in ["WeightResolution", "AgeResolution"] + if res.resolution_kind == "WeightResolution": + assert res.value == 10 + if res.resolution_kind == "AgeResolution": + assert res.value == 1 diff --git a/sdk/textanalytics/azure-ai-textanalytics/tests/test_repr.py b/sdk/textanalytics/azure-ai-textanalytics/tests/test_repr.py index d78568331d0e..74710066b487 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/tests/test_repr.py +++ b/sdk/textanalytics/azure-ai-textanalytics/tests/test_repr.py @@ -28,11 +28,10 @@ def text_document_statistics(): def text_analytics_warning(): model = _models.TextAnalyticsWarning( code="LongWordsInDocument", - message="The document contains very long words (longer than 64 characters). These words will be truncated and may result in unreliable model predictions." + message="The document contains very long words." ) model_repr = ( - "TextAnalyticsWarning(code=LongWordsInDocument, message=The document contains very long words (longer than 64 characters). " - "These words will be truncated and may result in unreliable model predictions.)" + "TextAnalyticsWarning(code=LongWordsInDocument, message=The document contains very long words.)" ) assert repr(model) == model_repr return model, model_repr @@ -56,9 +55,10 @@ def detected_language(): model = _models.DetectedLanguage( name="English", iso6391_name="en", - confidence_score=1.0 + confidence_score=1.0, + script="latin" ) - model_repr = "DetectedLanguage(name=English, iso6391_name=en, confidence_score=1.0)" + model_repr = "DetectedLanguage(name=English, iso6391_name=en, confidence_score=1.0, script=latin)" assert repr(model) == model_repr return model, model_repr @@ -322,10 +322,11 @@ def healthcare_relation_role(healthcare_entity): def healthcare_relation(healthcare_relation_role): model = _models.HealthcareRelation( relation_type="DOSAGE", - roles=[healthcare_relation_role[0]] + roles=[healthcare_relation_role[0]], + confidence_score=1.0 ) - model_repr = f"HealthcareRelation(relation_type=DOSAGE, roles=[{healthcare_relation_role[1]}])" + model_repr = f"HealthcareRelation(relation_type=DOSAGE, roles=[{healthcare_relation_role[1]}], confidence_score=1.0)" assert repr(model) == model_repr return model, model_repr @@ -389,22 +390,23 @@ def test_detect_language_result(self, detected_language, text_analytics_warning, assert repr(model) == model_repr - def test_recognized_linked_entities_result(self, linked_entity, text_analytics_warning, text_document_statistics): + def test_recognized_linked_entities_result(self, linked_entity, text_analytics_warning, text_document_statistics, detected_language): model = _models.RecognizeLinkedEntitiesResult( id="1", entities=[linked_entity[0]], warnings=[text_analytics_warning[0]], statistics=text_document_statistics[0], + detected_language=detected_language[0], is_error=False ) - model_repr = "RecognizeLinkedEntitiesResult(id=1, entities=[{}], warnings=[{}], statistics={}, is_error=False)".format( - linked_entity[1], text_analytics_warning[1], text_document_statistics[1] + model_repr = "RecognizeLinkedEntitiesResult(id=1, entities=[{}], warnings=[{}], statistics={}, detected_language={}, is_error=False)".format( + linked_entity[1], text_analytics_warning[1], text_document_statistics[1], detected_language[1] ) assert repr(model) == model_repr def test_analyze_sentiment_result( - self, text_analytics_warning, text_document_statistics, sentiment_confidence_scores, sentence_sentiment + self, text_analytics_warning, text_document_statistics, sentiment_confidence_scores, sentence_sentiment, detected_language ): model = _models.AnalyzeSentimentResult( id="1", @@ -413,12 +415,13 @@ def test_analyze_sentiment_result( statistics=text_document_statistics[0], confidence_scores=sentiment_confidence_scores[0], sentences=[sentence_sentiment[0]], + detected_language=detected_language[0], is_error=False ) model_repr = ( - "AnalyzeSentimentResult(id=1, sentiment=positive, warnings=[{}], statistics={}, confidence_scores={}, "\ - "sentences=[{}], is_error=False)".format( - text_analytics_warning[1], text_document_statistics[1], sentiment_confidence_scores[1], sentence_sentiment[1] + "AnalyzeSentimentResult(id=1, sentiment=positive, warnings=[{}], statistics={}, confidence_scores={}, " + "sentences=[{}], detected_language={}, is_error=False)".format( + text_analytics_warning[1], text_document_statistics[1], sentiment_confidence_scores[1], sentence_sentiment[1], detected_language[1] ) ) @@ -449,12 +452,13 @@ def test_analyze_healthcare_entities_result_item( entity_relations=[healthcare_relation[0]], warnings=[text_analytics_warning[0]], statistics=text_document_statistics[0], + fhir_bundle="{}", is_error=False ) model_repr = ( - "AnalyzeHealthcareEntitiesResult(id=1, entities=[{}], entity_relations=[{}], warnings=[{}], statistics={}, is_error=False)".format( - healthcare_entity[1], healthcare_relation[1], text_analytics_warning[1], text_document_statistics[1] + "AnalyzeHealthcareEntitiesResult(id=1, entities=[{}], entity_relations=[{}], warnings=[{}], statistics={}, fhir_bundle={}, is_error=False)".format( + healthcare_entity[1], healthcare_relation[1], text_analytics_warning[1], text_document_statistics[1], "{}" ) ) diff --git a/sdk/textanalytics/test-resources.json b/sdk/textanalytics/test-resources.json index 0aa2f4798924..6531cabc97a9 100644 --- a/sdk/textanalytics/test-resources.json +++ b/sdk/textanalytics/test-resources.json @@ -11,7 +11,7 @@ }, "location": { "type": "string", - "defaultValue": "[resourceGroup().location]", + "defaultValue": "eastus", "metadata": { "metadata": { "description": "The location of the resource. By default, this is the same as the resource group."